summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:26 -0600
commitab51f6a1367bd94d17209f6d8b327ab5e7eec56f (patch)
tree5ebd79b11b23e6b8747d98fbc4fa9c2d643f9ceb /tools
parent58cb4c3b8f46adc7af96dc8c7537f85bdf673288 (diff)
downloaddbus-1-tqt-ab51f6a1367bd94d17209f6d8b327ab5e7eec56f.tar.gz
dbus-1-tqt-ab51f6a1367bd94d17209f6d8b327ab5e7eec56f.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'tools')
-rw-r--r--tools/dbusxml2qt3/classgen.cpp10
-rw-r--r--tools/dbusxml2qt3/main.cpp2
-rw-r--r--tools/dbusxml2qt3/methodgen.cpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/tools/dbusxml2qt3/classgen.cpp b/tools/dbusxml2qt3/classgen.cpp
index af2de88..577053a 100644
--- a/tools/dbusxml2qt3/classgen.cpp
+++ b/tools/dbusxml2qt3/classgen.cpp
@@ -24,7 +24,7 @@
#include <tqdom.h>
#include <tqfile.h>
#include <tqstringlist.h>
-#include <tqtextstream.h>
+#include <textstream.h>
// local includes
#include "classgen.h"
@@ -945,13 +945,13 @@ bool ClassGenerator::finishStreams(const TQString& baseName,
writeFileFooter(headerStream);
writeFileFooter(sourceStream);
- TQIODevice* tqdevice = headerStream.tqdevice();
+ TQIODevice* device = headerStream.device();
headerStream.unsetDevice();
- delete tqdevice;
+ delete device;
- tqdevice = sourceStream.tqdevice();
+ device = sourceStream.device();
sourceStream.unsetDevice();
- delete tqdevice;
+ delete device;
return true;
}
diff --git a/tools/dbusxml2qt3/main.cpp b/tools/dbusxml2qt3/main.cpp
index cdc0a98..b58f5cf 100644
--- a/tools/dbusxml2qt3/main.cpp
+++ b/tools/dbusxml2qt3/main.cpp
@@ -28,7 +28,7 @@
#include <tqdom.h>
#include <tqfile.h>
#include <tqmap.h>
-#include <tqtextstream.h>
+#include <textstream.h>
// local includes
#include "classgen.h"
diff --git a/tools/dbusxml2qt3/methodgen.cpp b/tools/dbusxml2qt3/methodgen.cpp
index ec569ab..475d5e4 100644
--- a/tools/dbusxml2qt3/methodgen.cpp
+++ b/tools/dbusxml2qt3/methodgen.cpp
@@ -22,7 +22,7 @@
// TQt includes
#include <tqdom.h>
-#include <tqtextstream.h>
+#include <textstream.h>
// local includes
#include "methodgen.h"