diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | example/simple-client.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index dc2e49d..3457d61 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-application (0.2.3-0ubuntu2~ppa1~label3) UNRELEASED; urgency=low + + * Upstream Merge + * Making the test program count to 100 + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Aug 2010 20:29:47 -0500 + indicator-application (0.2.3-0ubuntu2~ppa1~label2) lucid; urgency=low * Upstream Merge diff --git a/example/simple-client.c b/example/simple-client.c index d756988..20cb281 100644 --- a/example/simple-client.c +++ b/example/simple-client.c @@ -103,7 +103,7 @@ static gboolean percent_change (gpointer user_data) { percentage = (percentage + 1) % 100; - gchar * percentstr = g_strdup_printf("%d%%", percentage); + gchar * percentstr = g_strdup_printf("%d%%", percentage + 1); app_indicator_set_label (APP_INDICATOR(user_data), percentstr, "100%"); g_free(percentstr); return TRUE; |