diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-10-01 11:37:00 -0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-10-03 18:07:07 -0300 |
commit | 0be845f3a94aaf271583629d395d298589def3fd (patch) | |
tree | 95b37adc22f6734ce9cd02316ab3b5eab1810f2d /src/modules | |
parent | 3b427b7014ffe8d449a3a1336e483b4f949c9417 (diff) |
Remove PropertyChanged signal handler.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/bluetooth/module-bluetooth-discover.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/modules/bluetooth/module-bluetooth-discover.c b/src/modules/bluetooth/module-bluetooth-discover.c index ae414a70..9c61ed2a 100644 --- a/src/modules/bluetooth/module-bluetooth-discover.c +++ b/src/modules/bluetooth/module-bluetooth-discover.c @@ -828,22 +828,6 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *msg, void * } } - } else if (dbus_message_is_signal(msg, "org.bluez.Device", "PropertyChanged")) { - - if (!dbus_message_iter_init(msg, &arg_i)) - pa_log("dbus: message has no parameters"); - else { - struct device *d; - - if ((d = device_find(u, dbus_message_get_path(msg)))) { - parse_device_property(u, d, &arg_i); - - /* Hmm, something changed, let's try to reconnect if we - * aren't connected yet */ - load_module_for_device(u, d); - } - } - } else if (dbus_message_is_signal(msg, "org.bluez.Headset", "Connected") || dbus_message_is_signal(msg, "org.bluez.AudioSink", "Connected")) { |