diff options
author | Ted Gould <ted@canonical.com> | 2009-08-08 11:08:03 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-08 11:08:03 -0600 |
commit | 74ac9091c44c933e14b6ef05f1177accc744ecf2 (patch) | |
tree | 15e4f8842b189378ed9b9e449336bfc2210132b5 /src/indicator-sus.c | |
parent | e522c2c39f2543f1992f6f45879b8ff901b2c3b3 (diff) | |
download | ayatana-indicator-session-74ac9091c44c933e14b6ef05f1177accc744ecf2.tar.gz ayatana-indicator-session-74ac9091c44c933e14b6ef05f1177accc744ecf2.tar.bz2 ayatana-indicator-session-74ac9091c44c933e14b6ef05f1177accc744ecf2.zip |
connecting to the signal
Diffstat (limited to 'src/indicator-sus.c')
-rw-r--r-- | src/indicator-sus.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/indicator-sus.c b/src/indicator-sus.c index f33eff0..3e16e64 100644 --- a/src/indicator-sus.c +++ b/src/indicator-sus.c @@ -182,13 +182,6 @@ status_menu_root_changed(DbusmenuGtkClient * client, DbusmenuMenuitem * newroot, } void -status_icon_changed (void) -{ - - -} - -void status_icon_cb (DBusGProxy * proxy, char * icons, GError *error, gpointer userdata) { g_return_if_fail(status_image != NULL); @@ -200,6 +193,13 @@ status_icon_cb (DBusGProxy * proxy, char * icons, GError *error, gpointer userda return; } +void +status_icon_changed (DBusGProxy * proxy, gchar * icon, gpointer userdata) +{ + return status_icon_cb(proxy, icon, NULL, NULL); +} + + static gboolean connect_to_status (gpointer userdata) { |