author | andyq <andyq> | 2002-10-17 22:55:12 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-17 22:55:12 (UTC) |
commit | 2f4ea594b00c0f5e220a773d0d34493546d860d3 (patch) (unidiff) | |
tree | d15c434d94e99c89661bb3b5e33a61bca9da78fd | |
parent | e38ea35a5bbfae58a9d4cb66cfdf557d606921cd (diff) | |
download | opie-2f4ea594b00c0f5e220a773d0d34493546d860d3.zip opie-2f4ea594b00c0f5e220a773d0d34493546d860d3.tar.gz opie-2f4ea594b00c0f5e220a773d0d34493546d860d3.tar.bz2 |
Added destination a package was installed to methods and members
-rw-r--r-- | noncore/settings/aqpkg/package.h | 6 |
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 @@ | |||
27 | #include <qstring.h> | 27 | #include <qstring.h> |
28 | #include "destination.h" | ||
28 | 29 | ||
@@ -43,2 +44,3 @@ public: | |||
43 | void setInstalledToRoot( bool root ) { installedToRoot = root; } | 44 | void setInstalledToRoot( bool root ) { installedToRoot = root; } |
45 | void setInstalledTo( Destination *d ) { installedTo = d; } | ||
44 | 46 | ||
@@ -55,2 +57,3 @@ public: | |||
55 | QString getInstalledVersion(); | 57 | QString getInstalledVersion(); |
58 | Destination *getInstalledTo() { return installedTo; } | ||
56 | 59 | ||
@@ -67,3 +70,2 @@ private: | |||
67 | QString filename; | 70 | QString filename; |
68 | QString installedTo; | ||
69 | bool packageStoredLocally; | 71 | bool packageStoredLocally; |
@@ -72,2 +74,4 @@ private: | |||
72 | bool differentVersionAvailable; | 74 | bool differentVersionAvailable; |
75 | |||
76 | Destination *installedTo; | ||
73 | }; | 77 | }; |