summaryrefslogtreecommitdiff
path: root/noncore/apps/zsafe/categorylist.h
Unidiff
Diffstat (limited to 'noncore/apps/zsafe/categorylist.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/zsafe/categorylist.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/zsafe/categorylist.h b/noncore/apps/zsafe/categorylist.h
index 96cf389..fc1c0a2 100644
--- a/noncore/apps/zsafe/categorylist.h
+++ b/noncore/apps/zsafe/categorylist.h
@@ -4,9 +4,11 @@
4#ifndef _CATEGORY_LIST_H_ 4#ifndef _CATEGORY_LIST_H_
5#define _CATEGORY_LIST_H_ 5#define _CATEGORY_LIST_H_
6 6
7#include <qstring.h> 7#include <qstring.h>
8#include <qasciidict.h> 8
9#include <qdict.h>
10
9#include "category.h" 11#include "category.h"
10 12
11// list of Category 13// list of Category
12 14
@@ -20,9 +22,9 @@ public:
20 Category *find (QString key); 22 Category *find (QString key);
21 void remove (QString key); 23 void remove (QString key);
22 void clear(); 24 void clear();
23 25
24 QAsciiDict<Category> categoryList; 26 QDict<Category> categoryList;
25 27
26private: 28private:
27 29
28}; 30};