diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-09 09:59:20 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-09 09:59:20 +0100 |
commit | 853ad495b863c179792044f1a74e8556d04e32db (patch) | |
tree | 8c8ac5869ebb4908f537e05f28db27261dabd180 /src/indicator-session.c | |
parent | 3edbdc147bcf6ce1b94e6156e318728c41abea2a (diff) | |
download | ayatana-indicator-session-853ad495b863c179792044f1a74e8556d04e32db.tar.gz ayatana-indicator-session-853ad495b863c179792044f1a74e8556d04e32db.tar.bz2 ayatana-indicator-session-853ad495b863c179792044f1a74e8556d04e32db.zip |
and the actual code
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index d7155f6..bfe0b75 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -491,6 +491,7 @@ receive_signal (GDBusProxy * proxy, g_signal_emit_by_name ((gpointer)self, "entry-added", &self->users); + } else{ g_signal_emit_by_name ((gpointer)self, @@ -498,6 +499,10 @@ receive_signal (GDBusProxy * proxy, &self->users); } } + else if (g_strcmp0(signal_name, "RebootRequired") == 0) { + // TODO waiting on design to give me a name. + self->devices.image = indicator_image_helper (ICON_DEFAULT); + } } |