summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/createcategorydialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/createcategorydialog.h')
-rw-r--r--krecipes/src/dialogs/createcategorydialog.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/krecipes/src/dialogs/createcategorydialog.h b/krecipes/src/dialogs/createcategorydialog.h
index 2bde7b7..a820996 100644
--- a/krecipes/src/dialogs/createcategorydialog.h
+++ b/krecipes/src/dialogs/createcategorydialog.h
@@ -13,17 +13,17 @@
#ifndef CREATECATEGORYDIALOG_H
#define CREATECATEGORYDIALOG_H
-#include <qmap.h>
+#include <ntqmap.h>
#include <kdialogbase.h>
#include "datablocks/elementlist.h"
class KLineEdit;
-class QPushButton;
-class QVBoxLayout;
-class QGroupBox;
-class QVBox;
+class TQPushButton;
+class TQVBoxLayout;
+class TQGroupBox;
+class TQVBox;
class KComboBox;
/**
@@ -32,19 +32,19 @@ class KComboBox;
class CreateCategoryDialog : public KDialogBase
{
public:
- CreateCategoryDialog( QWidget *parent, const ElementList &categories );
+ CreateCategoryDialog( TQWidget *parent, const ElementList &categories );
~CreateCategoryDialog();
- QString newCategoryName( void );
+ TQString newCategoryName( void );
int subcategory( void );
private:
void loadCategories( const ElementList &categories );
//Widgets
- QGroupBox *box;
+ TQGroupBox *box;
KLineEdit *elementEdit;
KComboBox* categoryComboBox;
- QMap<QString, int> idMap;
+ TQMap<TQString, int> idMap;
};