diff options
Diffstat (limited to 'tools/dbusxml2qt3')
-rw-r--r-- | tools/dbusxml2qt3/classgen.cpp | 10 | ||||
-rw-r--r-- | tools/dbusxml2qt3/main.cpp | 2 | ||||
-rw-r--r-- | tools/dbusxml2qt3/methodgen.cpp | 2 |
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" |