summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/shared
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:29:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:29:47 +0000
commit157db246622e300d8cfb4684c197ed873523e3e2 (patch)
treeeaae500286d2b11f6625063f6d7f48c45392de5d /kdevdesigner/shared
parentd6f8bbb45b267065a6907e71ff9c98bb6d161241 (diff)
downloadtdevelop-157db246622e300d8cfb4684c197ed873523e3e2.tar.gz
tdevelop-157db246622e300d8cfb4684c197ed873523e3e2.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1158455 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdevdesigner/shared')
-rw-r--r--kdevdesigner/shared/domtool.h4
-rw-r--r--kdevdesigner/shared/ui2uib.cpp2
-rw-r--r--kdevdesigner/shared/ui2uib.h4
-rw-r--r--kdevdesigner/shared/widgetdatabase.cpp4
4 files changed, 7 insertions, 7 deletions
diff --git a/kdevdesigner/shared/domtool.h b/kdevdesigner/shared/domtool.h
index e83e106b..8f3aa67c 100644
--- a/kdevdesigner/shared/domtool.h
+++ b/kdevdesigner/shared/domtool.h
@@ -30,8 +30,8 @@
#include <tqvariant.h>
#include <tqnamespace.h>
-class QDomElement;
-class QDomDocument;
+class TQDomElement;
+class TQDomDocument;
class DomTool : public Qt
{
diff --git a/kdevdesigner/shared/ui2uib.cpp b/kdevdesigner/shared/ui2uib.cpp
index b1e1c6ac..91fa7dee 100644
--- a/kdevdesigner/shared/ui2uib.cpp
+++ b/kdevdesigner/shared/ui2uib.cpp
@@ -42,7 +42,7 @@
/*
The .uib file format is the binary counterpart of the .ui file
format. It is generated by the ui2uib converter and understood by
- QWidgetFactory; in a future version, it might also be understood
+ TQWidgetFactory; in a future version, it might also be understood
by a uib2ui converter. Experiments show that .uib files are about
2.5 times faster to load and 6 times smaller than .ui files.
diff --git a/kdevdesigner/shared/ui2uib.h b/kdevdesigner/shared/ui2uib.h
index 6bbc02bc..3dd985b6 100644
--- a/kdevdesigner/shared/ui2uib.h
+++ b/kdevdesigner/shared/ui2uib.h
@@ -27,8 +27,8 @@
#ifndef UI2UIB_H
#define UI2UIB_H
-class QDataStream;
-class QDomDocument;
+class TQDataStream;
+class TQDomDocument;
void convertUiToUib( TQDomDocument& doc, TQDataStream& out );
diff --git a/kdevdesigner/shared/widgetdatabase.cpp b/kdevdesigner/shared/widgetdatabase.cpp
index 902cd697..10cdc334 100644
--- a/kdevdesigner/shared/widgetdatabase.cpp
+++ b/kdevdesigner/shared/widgetdatabase.cpp
@@ -124,8 +124,8 @@ void WidgetDatabase::setupDataBase( int id )
return;
#endif
- wGroups = new QStrList;
- invisibleGroups = new QStrList;
+ wGroups = new TQStrList;
+ invisibleGroups = new TQStrList;
invisibleGroups->append( "Forms" );
invisibleGroups->append( "Temp" );
className2Id = new TQDict<int>( dbdictsize );