diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:02:10 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:02:10 -0600 |
commit | 653e1bd92e3266401e34653c598f4b9dc934cc46 (patch) | |
tree | 8cbf92e0c3c2de99975c0f4f822f83c768fe61e7 /tools/dbusxml2qt3 | |
parent | 53193f5e4e4abba51448414c282f2b844bc42b0c (diff) | |
download | dbus-1-tqt-653e1bd92e3266401e34653c598f4b9dc934cc46.tar.gz dbus-1-tqt-653e1bd92e3266401e34653c598f4b9dc934cc46.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'tools/dbusxml2qt3')
-rw-r--r-- | tools/dbusxml2qt3/classgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dbusxml2qt3/classgen.cpp b/tools/dbusxml2qt3/classgen.cpp index 6ded6ca..ee626a5 100644 --- a/tools/dbusxml2qt3/classgen.cpp +++ b/tools/dbusxml2qt3/classgen.cpp @@ -398,7 +398,7 @@ static void openClassDeclaration(const Class& classData, stream << "class " << classData.name << " : public TQObject" << endl; stream << "{" << endl; stream << " Q_OBJECT" << endl; - stream << " TQ_OBJECT" << endl; + stream << " " << endl; stream << "public:" << endl; stream << " " << classData.name << "(const TQString& service, const TQString& path, TQObject* parent = 0, const char* name = 0);" << endl; |