aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-06 17:34:05 -0400
committerTed Gould <ted@canonical.com>2009-10-06 17:34:05 -0400
commit7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d (patch)
treed44c4f513259d8ef0756af716153a2cc47578e16
parentdf23d93731a05db7daa1abb34893f5cb5221c7b8 (diff)
downloadayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.tar.gz
ayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.tar.bz2
ayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.zip
Changing the icon name in the code.
-rw-r--r--src/indicator-session.c4
-rw-r--r--src/status-service.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c
index ef80033..197bd2f 100644
--- a/src/indicator-session.c
+++ b/src/indicator-session.c
@@ -76,8 +76,8 @@ get_label (void)
GtkImage *
get_icon (void)
{
- g_debug("Changing status icon: '%s'", "system-shutdown");
- status_image = GTK_IMAGE(gtk_image_new_from_icon_name("system-shutdown", GTK_ICON_SIZE_MENU));
+ g_debug("Changing status icon: '%s'", "indicator-system-shutdown");
+ status_image = GTK_IMAGE(gtk_image_new_from_icon_name("indicator-system-shutdown", GTK_ICON_SIZE_MENU));
gtk_widget_show(GTK_WIDGET(status_image));
return status_image;
}
diff --git a/src/status-service.c b/src/status-service.c
index fc4e535..b49913c 100644
--- a/src/status-service.c
+++ b/src/status-service.c
@@ -68,7 +68,7 @@ static const gchar * status_icons[STATUS_PROVIDER_STATUS_LAST] = {
/* STATUS_PROVIDER_STATUS_DND, */ "user-busy",
/* STATUS_PROVIDER_STATUS_INVISIBLE, */ "user-invisible",
/* STATUS_PROVIDER_STATUS_OFFLINE */ "user-offline",
- /* STATUS_PROVIDER_STATUS_DISCONNECTED */"system-shutdown"
+ /* STATUS_PROVIDER_STATUS_DISCONNECTED */"indicator-system-shutdown"
};