diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2012-08-23 13:51:09 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2012-08-23 13:51:09 +0200 |
commit | 92b3196bc61a7f5670d80a9900344a2fb1728d47 (patch) | |
tree | 509782e99facd7c04e3aa8984cf0f18af4189766 /src/gdbusxx | |
parent | 3035254a8a8f8daacda95549c276cb5c014b4a53 (diff) |
GDBus GIO: removed dead code
Diffstat (limited to 'src/gdbusxx')
-rw-r--r-- | src/gdbusxx/gdbus-cxx-bridge.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gdbusxx/gdbus-cxx-bridge.h b/src/gdbusxx/gdbus-cxx-bridge.h index 2a1dcfef..c01a9cc8 100644 --- a/src/gdbusxx/gdbus-cxx-bridge.h +++ b/src/gdbusxx/gdbus-cxx-bridge.h @@ -4539,13 +4539,6 @@ template <class T> class SignalWatch guint m_tag; T m_callback; - static gboolean isMatched(GDBusMessage *msg, void *data) - { - SignalWatch *watch = static_cast<SignalWatch*>(data); - return boost::iequals(g_dbus_message_get_path(msg), watch->m_object.getPath()) && - g_dbus_message_get_message_type(msg) == G_DBUS_MESSAGE_TYPE_SIGNAL; - } - void activateInternal(const Callback_t &callback, GDBusSignalCallback cb) { m_callback = callback; |