summaryrefslogtreecommitdiff
path: root/tools/xml2cpp.cpp
diff options
context:
space:
mode:
authorpdurante <pdurante@30a43799-04e7-0310-8b2b-ea0d24f86d0e>2007-04-29 01:17:32 +0000
committerpdurante <pdurante@30a43799-04e7-0310-8b2b-ea0d24f86d0e>2007-04-29 01:17:32 +0000
commit48a1be9f2acc19ea9f25cefa7d06cb1e04cd9d51 (patch)
tree86c087100c8b017148caa26c5395e687993b9973 /tools/xml2cpp.cpp
parent771ca71556811bf86e2e904f24a4cbd46b8fd2c2 (diff)
downloaddbus-c++-48a1be9f2acc19ea9f25cefa7d06cb1e04cd9d51.tar.gz
* Included config.h in all headers
* Don't define DBUS_API_SUBJECT_TO_CHANGE unless for old D-Bus versions * Use recursive mutex functions if libdbus supports it * Specify the path when adding match rules, otherwise messages wouldn't be forwarded to the right object under some circumstances * Added integration with the glib main loop (configure with --enable-glib) * Added a gtkmm dbus-browser clone to demonstrate glib integration * Fixed a typo in dbusxx-xml2cpp proxy output * Added python usage instructions for the Echo example git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@10948 30a43799-04e7-0310-8b2b-ea0d24f86d0e
Diffstat (limited to 'tools/xml2cpp.cpp')
-rw-r--r--tools/xml2cpp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/xml2cpp.cpp b/tools/xml2cpp.cpp
index df8bebc..3b38c6c 100644
--- a/tools/xml2cpp.cpp
+++ b/tools/xml2cpp.cpp
@@ -353,7 +353,7 @@ void generate_proxy( Xml::Document& doc, const char* filename )
if(arg_name.length())
file << tab << tab << "wi << " << arg_name << ";" << endl;
else
- file << tab << tab << "wi << argout" << j << ";" << endl;
+ file << tab << tab << "wi << argin" << j << ";" << endl;
}
file << tab << tab << "call.member(\"" << method.get("name") << "\");" << endl