summaryrefslogtreecommitdiffabout
path: root/libkdepim/categoryeditdialog.h
Side-by-side diff
Diffstat (limited to 'libkdepim/categoryeditdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/categoryeditdialog.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libkdepim/categoryeditdialog.h b/libkdepim/categoryeditdialog.h
index 9bb3201..828894f 100644
--- a/libkdepim/categoryeditdialog.h
+++ b/libkdepim/categoryeditdialog.h
@@ -25,5 +25,5 @@
#include <categoryeditdialog_base.h>
-#include <qlistview.h>
+#include <q3listview.h>
class KPimPrefs;
@@ -31,5 +31,5 @@ class KPimPrefs;
namespace KPIM {
- class CategorySelectItem :public QObject, public QCheckListItem
+ class CategorySelectItem :public QObject, public Q3CheckListItem
{
@@ -37,10 +37,10 @@ namespace KPIM {
public:
- CategorySelectItem(QListView * parent, const QString & text, Type tt) : QObject( parent ),
- QCheckListItem (parent, text, tt )
+ CategorySelectItem(Q3ListView * parent, const QString & text, Type tt) : QObject( parent ),
+ Q3CheckListItem (parent, text, tt )
{;}
signals:
- void stateChanged( QListViewItem*);
+ void stateChanged( Q3ListViewItem*);
protected:
@@ -48,5 +48,5 @@ namespace KPIM {
virtual void stateChange(bool b)
{
- QCheckListItem::stateChange(b);
+ Q3CheckListItem::stateChange(b);
emit stateChanged( this );
}
@@ -60,5 +60,5 @@ class CategoryEditDialog : public CategoryEditDialog_base
CategoryEditDialog( KPimPrefs *prefs, QWidget* parent = 0,
const char* name = 0,
- bool modal = FALSE, WFlags fl = 0 );
+ bool modal = FALSE, Qt::WFlags fl = 0 );
~CategoryEditDialog();
@@ -76,7 +76,7 @@ class CategoryEditDialog : public CategoryEditDialog_base
private slots:
- void editItem(QListViewItem *item);
+ void editItem(Q3ListViewItem *item);
void slotTextChanged(const QString &text);
-
+ private:
KPimPrefs *mPrefs;
};