diff options
author | Ted Gould <ted@gould.cx> | 2010-08-04 20:30:14 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-04 20:30:14 -0500 |
commit | 77b2b6f4e8dd7f782c89f30ed3f74b6fe51cf871 (patch) | |
tree | 90354d2b8cbdc6f6b7af2403e785d4ac079901c0 | |
parent | 1e7513cafe348dbf1f38c7686b66ad347e4e9c56 (diff) | |
parent | 1f04ea2f899a2922e9c625fd629463c4dd16aff5 (diff) | |
download | libayatana-appindicator-77b2b6f4e8dd7f782c89f30ed3f74b6fe51cf871.tar.gz libayatana-appindicator-77b2b6f4e8dd7f782c89f30ed3f74b6fe51cf871.tar.bz2 libayatana-appindicator-77b2b6f4e8dd7f782c89f30ed3f74b6fe51cf871.zip |
* Upstream Merge
* Making the test program count to 100
-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; |