summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/categoryfilterimpl.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/aqpkg/categoryfilterimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/categoryfilterimpl.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/categoryfilterimpl.h b/noncore/settings/aqpkg/categoryfilterimpl.h
index b6b4fd5..a85fce4 100644
--- a/noncore/settings/aqpkg/categoryfilterimpl.h
+++ b/noncore/settings/aqpkg/categoryfilterimpl.h
@@ -1,40 +1,43 @@
/***************************************************************************
categoryfilterimpl.h - description
-------------------
begin : Sun Nov 17 2002
copyright : (C) 2002 by Andy Qua
email : andy.qua@blueyonder.co.uk
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef CATEGORYFILTERIMPL_H
#define CATEGORYFILTERIMPL_H
-#include <qwidget.h>
-#include <qstring.h>
+#include <qdialog.h>
-#include "categoryfilter.h"
+class QListBox;
/**
*@author Andy Qua
*/
-class CategoryFilterImpl : public CategoryFilterDlg
+class CategoryFilterImpl : public QDialog
{
Q_OBJECT
public:
CategoryFilterImpl(const QString &categories, const QString &selectedCategories, QWidget *parent=0, const char *name=0);
~CategoryFilterImpl();
QString getSelectedFilter();
+
+private:
+ QListBox *lstCategories;
+
};
#endif