summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/server.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/aqpkg/server.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/server.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/server.h b/noncore/settings/aqpkg/server.h
index f585b8f..02746e0 100644
--- a/noncore/settings/aqpkg/server.h
+++ b/noncore/settings/aqpkg/server.h
@@ -19,5 +19,5 @@
+#include <qlist.h>
#include <qstring.h>
-#include <vector>
using namespace std;
@@ -37,3 +37,3 @@ public:
- void readStatusFile( vector<Destination> &v );
+ void readStatusFile( QList<Destination> &v );
void readLocalIpks( Server *local );
@@ -44,3 +44,3 @@ public:
QString toString();
- vector<Package> &getPackageList();
+ QList<Package> &getPackageList();
bool isServerActive() { return active; }
@@ -62,3 +62,3 @@ private:
- vector<Package> packageList;
+ QList<Package> packageList;
};