summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/dtepeditdlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
commitdc6b8e72fed2586239e3514819238c520636c9d9 (patch)
tree88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/dialogs/dtepeditdlg.h
parent6927d4436e54551917f600b706a8d6109e49de1c (diff)
downloadtdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz
tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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