aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-sus.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-12 22:03:14 -0600
committerTed Gould <ted@canonical.com>2009-08-12 22:03:14 -0600
commit9d37b17ad4ea3d3d73290af9c7239460c7afee51 (patch)
treeac2a238614e4f3a5762c7f4d8b04bcc8ce139655 /src/indicator-sus.c
parent05de808c0cb623e7a2c81006b943da83ee81ebed (diff)
parent6e421d043306ac0e72d9760c0d649814f4503d26 (diff)
downloadayatana-indicator-session-9d37b17ad4ea3d3d73290af9c7239460c7afee51.tar.gz
ayatana-indicator-session-9d37b17ad4ea3d3d73290af9c7239460c7afee51.tar.bz2
ayatana-indicator-session-9d37b17ad4ea3d3d73290af9c7239460c7afee51.zip
Fixing signal name and cleaning debug messages.
Diffstat (limited to 'src/indicator-sus.c')
-rw-r--r--src/indicator-sus.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator-sus.c b/src/indicator-sus.c
index fcab5cb..7a198b2 100644
--- a/src/indicator-sus.c
+++ b/src/indicator-sus.c
@@ -73,7 +73,7 @@ get_label (void)
GtkImage *
get_icon (void)
{
- g_debug("Changing status icon: %s", "user-offline");
+ g_debug("Changing status icon: '%s'", "user-offline");
status_image = GTK_IMAGE(gtk_image_new_from_icon_name("user-offline", GTK_ICON_SIZE_MENU));
gtk_widget_show(GTK_WIDGET(status_image));
return status_image;
@@ -189,7 +189,7 @@ status_icon_cb (DBusGProxy * proxy, char * icons, GError *error, gpointer userda
g_return_if_fail(icons != NULL);
g_return_if_fail(icons[0] == '\0');
- g_debug("Changing status icon: %s", icons);
+ g_debug("Changing status icon: '%s'", icons);
gtk_image_set_from_icon_name(status_image, icons, GTK_ICON_SIZE_MENU);
return;
@@ -222,8 +222,8 @@ connect_to_status (gpointer userdata)
return FALSE;
}
- dbus_g_proxy_add_signal(status_proxy, "IconsChanged", G_TYPE_STRING, G_TYPE_INVALID);
- dbus_g_proxy_connect_signal(status_proxy, "IconsChanged", G_CALLBACK(status_icon_changed), NULL, NULL);
+ dbus_g_proxy_add_signal(status_proxy, "StatusIconsChanged", G_TYPE_STRING, G_TYPE_INVALID);
+ dbus_g_proxy_connect_signal(status_proxy, "StatusIconsChanged", G_CALLBACK(status_icon_changed), NULL, NULL);
}
org_ayatana_indicator_status_service_status_icons_async(status_proxy, status_icon_cb, NULL);