diff options
author | Ted Gould <ted@canonical.com> | 2009-08-12 22:02:06 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-12 22:02:06 -0600 |
commit | 6e421d043306ac0e72d9760c0d649814f4503d26 (patch) | |
tree | f9ace20a346c7f302e564f29239afad27310257f /src | |
parent | fe0d2f8ccb612af918e4d9783810069c64fae9fe (diff) | |
download | ayatana-indicator-session-6e421d043306ac0e72d9760c0d649814f4503d26.tar.gz ayatana-indicator-session-6e421d043306ac0e72d9760c0d649814f4503d26.tar.bz2 ayatana-indicator-session-6e421d043306ac0e72d9760c0d649814f4503d26.zip |
Oops, wrong signal name. Now better.
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-sus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-sus.c b/src/indicator-sus.c index 7c6e66d..7a198b2 100644 --- a/src/indicator-sus.c +++ b/src/indicator-sus.c @@ -222,8 +222,8 @@ connect_to_status (gpointer userdata) return FALSE; } - dbus_g_proxy_add_signal(status_proxy, "IconsChanged", G_TYPE_STRING, G_TYPE_INVALID); - dbus_g_proxy_connect_signal(status_proxy, "IconsChanged", G_CALLBACK(status_icon_changed), NULL, NULL); + dbus_g_proxy_add_signal(status_proxy, "StatusIconsChanged", G_TYPE_STRING, G_TYPE_INVALID); + dbus_g_proxy_connect_signal(status_proxy, "StatusIconsChanged", G_CALLBACK(status_icon_changed), NULL, NULL); } org_ayatana_indicator_status_service_status_icons_async(status_proxy, status_icon_cb, NULL); |