* 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

@ -153,8 +153,6 @@ DBusHandlerResult Connection::Private::message_filter_stub( DBusConnection* conn
{
MessageSlot* slot = static_cast<MessageSlot*>(data);
debug_log("incoming message on connection %p", conn);
Message msg = Message(new Message::Private(dmsg));
return slot && !slot->empty() && slot->call(msg)
@ -268,7 +266,7 @@ bool Connection::register_bus()
bool r = dbus_bus_register(_pvt->conn, e);
if(e) throw (e);
if(e) throw (e);
return r;
}
@ -369,7 +367,7 @@ void Connection::request_name( const char* name, int flags )
dbus_bus_request_name(_pvt->conn, name, flags, e); //we deliberately don't check return value
if(e) throw Error(e);
if(e) throw Error(e);
// this->remove_match("destination");