summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/packagelist.h
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/packagelist.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/packagelist.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/unsupported/oipkg/packagelist.h b/noncore/unsupported/oipkg/packagelist.h
index eda8d22..68b89f0 100644
--- a/noncore/unsupported/oipkg/packagelist.h
+++ b/noncore/unsupported/oipkg/packagelist.h
@@ -17,24 +17,26 @@ public:
17 PackageList(); 17 PackageList();
18 PackageList( PackageManagerSettings* ); 18 PackageList( PackageManagerSettings* );
19 ~PackageList(); 19 ~PackageList();
20 void insertPackage( Package* ); 20 void insertPackage( Package* );
21 Package* find( QString ); 21 Package* find( QString );
22 Package* next(); 22 Package* next();
23 Package* first(); 23 Package* first();
24 24
25 QStringList getSections(); 25 QStringList getSections();
26 QStringList getSubSections(); 26 QStringList getSubSections();
27 void setSettings( PackageManagerSettings* ); 27 void setSettings( PackageManagerSettings* );
28 void filterPackages(); 28 void filterPackages();
29 /** No descriptions */
30 Package* getByName( QString );
29 31
30public slots: 32public slots:
31 void setSection(QString); 33 void setSection(QString);
32 void setSubSection(QString); 34 void setSubSection(QString);
33 void update(); 35 void update();
34 36
35private: 37private:
36 int currentPackage; 38 int currentPackage;
37 int packageCount; 39 int packageCount;
38 40
39 PackageManagerSettings *settings; 41 PackageManagerSettings *settings;
40 QDict<Package> packageList; 42 QDict<Package> packageList;