diff options
author | Ted Gould <ted@gould.cx> | 2011-07-21 16:25:58 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-07-21 16:25:58 -0500 |
commit | 3ef95ace644808ca261a90144a08030efec4365f (patch) | |
tree | 174db4e39394cdd303a8758ea39efe962540ed99 | |
parent | 390e002e058128b5fe6b2d257dcfb4819bb799a1 (diff) | |
download | ayatana-indicator-messages-3ef95ace644808ca261a90144a08030efec4365f.tar.gz ayatana-indicator-messages-3ef95ace644808ca261a90144a08030efec4365f.tar.bz2 ayatana-indicator-messages-3ef95ace644808ca261a90144a08030efec4365f.zip |
Responding to clear attention method by clearing the dot
-rw-r--r-- | src/messages-service-dbus.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/messages-service-dbus.c b/src/messages-service-dbus.c index 6cc33e0..1585ac0 100644 --- a/src/messages-service-dbus.c +++ b/src/messages-service-dbus.c @@ -200,7 +200,10 @@ message_service_dbus_new (void) static void bus_method_call (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * method, GVariant * params, GDBusMethodInvocation * invocation, gpointer user_data) { - MessageServiceDbusPrivate * priv = MESSAGE_SERVICE_DBUS_GET_PRIVATE(user_data); + MessageServiceDbus * ms = MESSAGE_SERVICE_DBUS(user_data); + if (ms == NULL) { return; } + + MessageServiceDbusPrivate * priv = MESSAGE_SERVICE_DBUS_GET_PRIVATE(ms); if (g_strcmp0("AttentionRequested", method) == 0) { g_dbus_method_invocation_return_value(invocation, g_variant_new("(b)", priv->dot)); @@ -208,6 +211,10 @@ bus_method_call (GDBusConnection * connection, const gchar * sender, const gchar } else if (g_strcmp0("IconShown", method) == 0) { g_dbus_method_invocation_return_value(invocation, g_variant_new("(b)", priv->hidden)); return; + } else if (g_strcmp0("ClearAttention", method) == 0) { + message_service_dbus_set_attention(ms, FALSE); + g_dbus_method_invocation_return_value(invocation, NULL); + return; } else { g_warning("Unknown function call '%s'", method); } |