summaryrefslogtreecommitdiff
Unidiff
Diffstat (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 @@
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};