diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:44:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 16:57:08 +0900 |
commit | 60ab53760d8415d89c6e4b896aa456c6fc88c8b1 (patch) | |
tree | 74d35bb332bd65ed5113ceb1d56e91281c804a48 /src/tools/dbusxml2qt3/classgen.cpp | |
parent | fd60f35194230d82745e75e1856ccfd73b0153e5 (diff) | |
download | dbus-1-tqt-60ab5376.tar.gz dbus-1-tqt-60ab5376.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 94f53ef63d8ce12e387085ade3fd5d095e6c31e2)
Diffstat (limited to 'src/tools/dbusxml2qt3/classgen.cpp')
-rw-r--r-- | src/tools/dbusxml2qt3/classgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dbusxml2qt3/classgen.cpp b/src/tools/dbusxml2qt3/classgen.cpp index e117387..0f54fd8 100644 --- a/src/tools/dbusxml2qt3/classgen.cpp +++ b/src/tools/dbusxml2qt3/classgen.cpp @@ -416,7 +416,7 @@ static void openClassDeclaration(const Class& classData, case Class::Proxy: 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 |