diff options
author | Ted Gould <ted@canonical.com> | 2009-10-06 17:34:45 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-06 17:34:45 -0400 |
commit | fedf02a10e61f0e33a23b9df2f54d3065a197f32 (patch) | |
tree | c3df45c7bb7acb9debf2cd1bd516e91234f31caf /src | |
parent | fba2cd7a0447689a20f128c80287ac37391e3c08 (diff) | |
parent | 7ffa07052dc783b5c49a006cc1a8d8ef03c08d9d (diff) | |
download | ayatana-indicator-session-fedf02a10e61f0e33a23b9df2f54d3065a197f32.tar.gz ayatana-indicator-session-fedf02a10e61f0e33a23b9df2f54d3065a197f32.tar.bz2 ayatana-indicator-session-fedf02a10e61f0e33a23b9df2f54d3065a197f32.zip |
Adding in a new icon name as apparently adding the icon wasn't
good enough.
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" }; |