diff options
author | Ted Gould <ted@canonical.com> | 2009-10-06 17:34:05 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-06 17:34:05 -0400 |
commit | 7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d (patch) | |
tree | d44c4f513259d8ef0756af716153a2cc47578e16 /src | |
parent | df23d93731a05db7daa1abb34893f5cb5221c7b8 (diff) | |
download | ayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.tar.gz ayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.tar.bz2 ayatana-indicator-session-7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d.zip |
Changing the icon name in the code.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-session.c | 4 | ||||
-rw-r--r-- | src/status-service.c | 2 |
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" }; |