summaryrefslogtreecommitdiff
path: root/noncore/settings
authorandyq <andyq>2002-10-17 22:55:12 (UTC)
committer andyq <andyq>2002-10-17 22:55:12 (UTC)
commit2f4ea594b00c0f5e220a773d0d34493546d860d3 (patch) (side-by-side diff)
treed15c434d94e99c89661bb3b5e33a61bca9da78fd /noncore/settings
parente38ea35a5bbfae58a9d4cb66cfdf557d606921cd (diff)
downloadopie-2f4ea594b00c0f5e220a773d0d34493546d860d3.zip
opie-2f4ea594b00c0f5e220a773d0d34493546d860d3.tar.gz
opie-2f4ea594b00c0f5e220a773d0d34493546d860d3.tar.bz2
Added destination a package was installed to methods and members
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/package.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/package.h b/noncore/settings/aqpkg/package.h
index d885ab6..8ba5a6a 100644
--- a/noncore/settings/aqpkg/package.h
+++ b/noncore/settings/aqpkg/package.h
@@ -27,2 +27,3 @@
#include <qstring.h>
+#include "destination.h"
@@ -43,2 +44,3 @@ public:
void setInstalledToRoot( bool root ) { installedToRoot = root; }
+ void setInstalledTo( Destination *d ) { installedTo = d; }
@@ -55,2 +57,3 @@ public:
QString getInstalledVersion();
+ Destination *getInstalledTo() { return installedTo; }
@@ -67,3 +70,2 @@ private:
QString filename;
- QString installedTo;
bool packageStoredLocally;
@@ -72,2 +74,4 @@ private:
bool differentVersionAvailable;
+
+ Destination *installedTo;
};