summaryrefslogtreecommitdiffstats
path: root/src/tools/dbusxml2qt3/methodgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/dbusxml2qt3/methodgen.cpp')
-rw-r--r--src/tools/dbusxml2qt3/methodgen.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/dbusxml2qt3/methodgen.cpp b/src/tools/dbusxml2qt3/methodgen.cpp
index 4a03850..74a7f6c 100644
--- a/src/tools/dbusxml2qt3/methodgen.cpp
+++ b/src/tools/dbusxml2qt3/methodgen.cpp
@@ -519,6 +519,11 @@ static void writeNodeInitialization(const Class& classData,
TQValueList<Class>::const_iterator endIt = interfaces.end();
for (; it != endIt; ++it)
{
+ if ((*it).dbusName == "org.freedesktop.DBus.Introspectable")
+ {
+ continue;
+ }
+
stream << endl;
stream << " name = \"" << (*it).dbusName << "\";" << endl;
stream << " interface = createInterface(name);" << endl;