author | leseb <leseb> | 2002-06-21 09:18:58 (UTC) |
---|---|---|
committer | leseb <leseb> | 2002-06-21 09:18:58 (UTC) |
commit | b5c57220c9a7b685418c8e8e0e02906659dd8b47 (patch) (unidiff) | |
tree | f92e01b5354d13086bd9dfb2882f9063d18c7537 | |
parent | 312c3d051c78daaeadc9ec0b3a161e392bcd0030 (diff) | |
download | opie-b5c57220c9a7b685418c8e8e0e02906659dd8b47.zip opie-b5c57220c9a7b685418c8e8e0e02906659dd8b47.tar.gz opie-b5c57220c9a7b685418c8e8e0e02906659dd8b47.tar.bz2 |
Missing public attribute
-rw-r--r-- | noncore/unsupported/oipkg/packagelist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/unsupported/oipkg/packagelist.h b/noncore/unsupported/oipkg/packagelist.h index 78dcd92..46a00e9 100644 --- a/noncore/unsupported/oipkg/packagelist.h +++ b/noncore/unsupported/oipkg/packagelist.h | |||
@@ -1,25 +1,25 @@ | |||
1 | #ifndef PACKAGELIST_H | 1 | #ifndef PACKAGELIST_H |
2 | #define PACKAGELIST_H | 2 | #define PACKAGELIST_H |
3 | 3 | ||
4 | #include <qdict.h> | 4 | #include <qdict.h> |
5 | #include "package.h" | 5 | #include "package.h" |
6 | #include "pksettings.h" | 6 | #include "pksettings.h" |
7 | #include "debug.h" | 7 | #include "debug.h" |
8 | 8 | ||
9 | class PackageList :QObject | 9 | class PackageList : public QObject |
10 | { | 10 | { |
11 | Q_OBJECT | 11 | Q_OBJECT |
12 | public: | 12 | public: |
13 | //static QString all = QObject::tr("All"); | 13 | //static QString all = QObject::tr("All"); |
14 | 14 | ||
15 | PackageList (QObject *parent=0, const char *name=0); | 15 | PackageList (QObject *parent=0, const char *name=0); |
16 | PackageList( PackageManagerSettings *s, QObject *parent=0, const char *name=0); | 16 | PackageList( PackageManagerSettings *s, QObject *parent=0, const char *name=0); |
17 | virtual ~PackageList(); | 17 | virtual ~PackageList(); |
18 | void insertPackage( Package* ); | 18 | void insertPackage( Package* ); |
19 | Package* find( QString ); | 19 | Package* find( QString ); |
20 | Package* next(); | 20 | Package* next(); |
21 | Package* first(); | 21 | Package* first(); |
22 | 22 | ||
23 | QStringList getSections(); | 23 | QStringList getSections(); |
24 | QStringList getSubSections(); | 24 | QStringList getSubSections(); |
25 | void setSettings( PackageManagerSettings* ); | 25 | void setSettings( PackageManagerSettings* ); |