* Fixed a bug where signals would not be always forwarded to the appropriate local proxy

* Fixed incorrect parsing of command line arguments in dbusxx-introspect (Sergey Struzh)
* Removed deprecated method MessageIter::array_length
* Some cleanup


git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@11870 30a43799-04e7-0310-8b2b-ea0d24f86d0e
This commit is contained in:
pdurante 2007-07-06 12:44:57 +00:00
parent 31843c4a7c
commit b116f68663
7 changed files with 15 additions and 32 deletions

View file

@ -58,13 +58,13 @@ int main( int argc, char** argv )
{
systembus = false;
path = argv[1];
service = argc > 1 ? argv[2] : 0;
service = argc > 2 ? argv[2] : 0;
}
else
{
systembus = true;
path = argv[2];
service = argc > 2 ? argv[3] : 0;
service = argc > 3 ? argv[3] : 0;
}
DBus::default_dispatcher = &dispatcher;