diff options
author | Emanoil Kotsev <[email protected]> | 2019-04-28 15:14:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-04-28 15:14:31 +0900 |
commit | d73d25c65d6a2e899d2b779fed7cbe1fd095e2c2 (patch) | |
tree | 23019361c5e332d478229308ed4836b951ab3d98 /src | |
parent | bb8f8a28271c8c730e94c77afeb32e24e08c1c17 (diff) | |
download | dbus-1-tqt-d73d25c65d6a2e899d2b779fed7cbe1fd095e2c2.tar.gz dbus-1-tqt-d73d25c65d6a2e899d2b779fed7cbe1fd095e2c2.zip |
Add Proxy and Interface to class name.
Signed-off-by: Emanoil Kotsev <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/dbusxml2qt3/classgen.cpp | 2 |
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 |