diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-22 14:05:48 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-22 14:05:48 +0100 |
commit | 84a75758a3a76b024168612b3932d7b09e5bd1a8 (patch) | |
tree | 0904da0714ae9907b9a5c486ceb16e4fd25cb06b /src/indicator-session.c | |
parent | 397ce19ba4e460dbb3bfb4a4b7b06d98918c153b (diff) | |
download | ayatana-indicator-session-84a75758a3a76b024168612b3932d7b09e5bd1a8.tar.gz ayatana-indicator-session-84a75758a3a76b024168612b3932d7b09e5bd1a8.tar.bz2 ayatana-indicator-session-84a75758a3a76b024168612b3932d7b09e5bd1a8.zip |
used the set aside defines for icon names
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index c980378..fab47b3 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -167,7 +167,7 @@ indicator_session_init (IndicatorSession *self) // devices self->devices.menu = GTK_MENU (dbusmenu_gtkmenu_new(INDICATOR_SESSION_DBUS_NAME, INDICATOR_SESSION_DBUS_OBJECT)); - self->devices.image = indicator_image_helper ("system-devices-panel"); + self->devices.image = indicator_image_helper (ICON_DEFAULT); gtk_widget_show (GTK_WIDGET(self->devices.menu)); gtk_widget_show (GTK_WIDGET(self->devices.image)); @@ -499,7 +499,7 @@ receive_signal (GDBusProxy * proxy, } else if (g_strcmp0(signal_name, "RebootRequired") == 0) { // TODO waiting on design to give me a name. - self->devices.image = indicator_image_helper ("system-devices-alert-panel"); + self->devices.image = indicator_image_helper (ICON_RESTART); } } |