diff options
author | Ted Gould <ted@canonical.com> | 2009-08-12 22:24:17 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-12 22:24:17 -0600 |
commit | 691cc8ecf86c0289bc9a0c8a6849041fd9f5f52c (patch) | |
tree | 4be93729c6c37eac3895aa78f136a87040bc7510 | |
parent | 629d336c12192ead9693a1ce6a7a665e3d87205e (diff) | |
parent | 353afff8d6a75cc564c3e9278b616cf7420cd803 (diff) | |
download | ayatana-indicator-session-691cc8ecf86c0289bc9a0c8a6849041fd9f5f52c.tar.gz ayatana-indicator-session-691cc8ecf86c0289bc9a0c8a6849041fd9f5f52c.tar.bz2 ayatana-indicator-session-691cc8ecf86c0289bc9a0c8a6849041fd9f5f52c.zip |
releasing version 0.1~ppa7~status7
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/indicator-sus.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 1671b59..93b70d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-sus (0.1~ppa7~status7) karmic; urgency=low + + * Logic fix + + -- Ted Gould <ted@ubuntu.com> Wed, 12 Aug 2009 22:24:13 -0600 + indicator-sus (0.1~ppa7~status6) karmic; urgency=low * Fixing signal name and cleaning debug messages. diff --git a/src/indicator-sus.c b/src/indicator-sus.c index 7a198b2..07efc86 100644 --- a/src/indicator-sus.c +++ b/src/indicator-sus.c @@ -187,7 +187,7 @@ status_icon_cb (DBusGProxy * proxy, char * icons, GError *error, gpointer userda { g_return_if_fail(status_image != NULL); g_return_if_fail(icons != NULL); - g_return_if_fail(icons[0] == '\0'); + g_return_if_fail(icons[0] != '\0'); g_debug("Changing status icon: '%s'", icons); gtk_image_set_from_icon_name(status_image, icons, GTK_ICON_SIZE_MENU); |