summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmanoil Kotsev <deloptes@gmail.com>2019-04-28 15:14:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-28 15:14:31 +0900
commitd73d25c65d6a2e899d2b779fed7cbe1fd095e2c2 (patch)
tree23019361c5e332d478229308ed4836b951ab3d98
parentbb8f8a28271c8c730e94c77afeb32e24e08c1c17 (diff)
downloaddbus-1-tqt-d73d25c65d6a2e899d2b779fed7cbe1fd095e2c2.tar.gz
dbus-1-tqt-d73d25c65d6a2e899d2b779fed7cbe1fd095e2c2.zip
Add Proxy and Interface to class name.
Signed-off-by: Emanoil Kotsev <deloptes@gmail.com>
-rw-r--r--src/tools/dbusxml2qt3/classgen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/dbusxml2qt3/classgen.cpp b/src/tools/dbusxml2qt3/classgen.cpp
index 1718340..95569d1 100644
--- a/src/tools/dbusxml2qt3/classgen.cpp
+++ b/src/tools/dbusxml2qt3/classgen.cpp
@@ -983,6 +983,7 @@ bool ClassGenerator::generateInterface(const Class& classData,
TQTextStream& sourceStream)
{
Class classDataCopy = classData;
+ classDataCopy.name += "Interface";
splitAsyncInterfaceMethods(classDataCopy);
// create header
@@ -1021,6 +1022,7 @@ bool ClassGenerator::generateProxy(const Class& classData,
TQTextStream& sourceStream)
{
Class classDataCopy = classData;
+ classDataCopy.name += "Proxy";
splitAsyncProxyMethods(classDataCopy);
// create header