summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tools/dbusxml2qt3/classgen.cpp2
-rw-r--r--src/tools/dbusxml2qt3/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dbusxml2qt3/classgen.cpp b/src/tools/dbusxml2qt3/classgen.cpp
index 12051c0..1718340 100644
--- a/src/tools/dbusxml2qt3/classgen.cpp
+++ b/src/tools/dbusxml2qt3/classgen.cpp
@@ -373,7 +373,7 @@ static void writeInterfaceIncludes(const TQValueList<Class> interfaces,
TQValueList<Class>::const_iterator endIt = interfaces.end();
for (; it != endIt; ++it)
{
- stream << "#include \"" << (*it).name.lower() << ".h\"" << endl;
+ stream << "#include \"" << (*it).name.lower() << "interface.h\"" << endl;
}
stream << "#include \"introspectableinterface.h\"" << endl;
diff --git a/src/tools/dbusxml2qt3/main.cpp b/src/tools/dbusxml2qt3/main.cpp
index 0208072..ea135f7 100644
--- a/src/tools/dbusxml2qt3/main.cpp
+++ b/src/tools/dbusxml2qt3/main.cpp
@@ -336,7 +336,7 @@ int main(int argc, char** argv)
exit(3);
}
- nodeClassName.replace('/', "_");
+ nodeClassName.replace('/', "::");
}
TQStringList nameParts = TQStringList::split("::", nodeClassName);