summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/dtepeditdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/dtepeditdlg.h')
-rw-r--r--quanta/dialogs/dtepeditdlg.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/quanta/dialogs/dtepeditdlg.h b/quanta/dialogs/dtepeditdlg.h
index 45bd3d6d..ed921a5a 100644
--- a/quanta/dialogs/dtepeditdlg.h
+++ b/quanta/dialogs/dtepeditdlg.h
@@ -17,7 +17,7 @@
#define DTEPEDITDLG_H
//qt includes
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
//own includes
#include "dtepeditdlgs.h"
@@ -30,22 +30,22 @@ class KConfig;
class DTEPStructureEditDlgS;
struct StructGroup {
- QString name; ///<the name of the group
- QString noName; ///<the text when there are no elements in the group
- QString icon; ///<the icon of the group
- QString tag;
+ TQString name; ///<the name of the group
+ TQString noName; ///<the text when there are no elements in the group
+ TQString icon; ///<the icon of the group
+ TQString tag;
bool hasFileName;
- QString fileNameRx;
+ TQString fileNameRx;
bool appendToTags;
- QString parentGroup;
- QString definitionRx;
+ TQString parentGroup;
+ TQString definitionRx;
bool definitionRxMinimal;
- QString usageRx;
- QString typeRx;
- QString tagType;
+ TQString usageRx;
+ TQString typeRx;
+ TQString tagType;
bool parseFile;
- QString completeAfterRx;
- QString removeRx;
+ TQString completeAfterRx;
+ TQString removeRx;
bool simpleGroup;
bool variableGroup;
bool functionGroup;
@@ -57,7 +57,7 @@ class DTEPEditDlg : public DTEPEditDlgS
{
Q_OBJECT
public:
- DTEPEditDlg(const QString& descriptionFile, QWidget *parent = 0, const char *name = 0);
+ DTEPEditDlg(const TQString& descriptionFile, TQWidget *parent = 0, const char *name = 0);
~DTEPEditDlg();
void saveResult();
void slotFamilyChanged(int family);
@@ -77,13 +77,13 @@ class DTEPEditDlg : public DTEPEditDlgS
void writePages(KConfig *config);
void writeParserRules(KConfig *config);
void writeStructures(KConfig *config);
- void writeEntry(KConfig *config, const QString &key, const QString &value);
+ void writeEntry(KConfig *config, const TQString &key, const TQString &value);
- QString m_descriptionFile;
+ TQString m_descriptionFile;
KConfig *m_config;
int m_family;
- QWidget *m_pagesWidget;
- QValueList<StructGroup> m_structGroups;
+ TQWidget *m_pagesWidget;
+ TQValueList<StructGroup> m_structGroups;
};
#endif