* 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:
parent
31843c4a7c
commit
b116f68663
7 changed files with 15 additions and 32 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue