diff options
author | Ted Gould <ted@gould.cx> | 2010-08-04 15:20:08 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-04 15:20:08 -0500 |
commit | 2ffcd74f014ed085e49f4735b2baa2fd95ab6fec (patch) | |
tree | 8ab5709bc6b99a4c7a0dfe78ad5f22d8c763273a | |
parent | 1baa8607b5d5edf0acd7d18c48c54344ddbc0c38 (diff) | |
parent | b83a74cd18522241f70efc98a285a363c55b91f7 (diff) | |
download | libayatana-appindicator-2ffcd74f014ed085e49f4735b2baa2fd95ab6fec.tar.gz libayatana-appindicator-2ffcd74f014ed085e49f4735b2baa2fd95ab6fec.tar.bz2 libayatana-appindicator-2ffcd74f014ed085e49f4735b2baa2fd95ab6fec.zip |
* Upstream Merge
* Fixing the check of the function signature
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/indicator-application.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 7912ff7..f61dbba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-application (0.2.3-0ubuntu2~ppa1~label2) UNRELEASED; urgency=low + + * Upstream Merge + * Fixing the check of the function signature + + -- Ted Gould <ted@ubuntu.com> Wed, 04 Aug 2010 15:19:23 -0500 + indicator-application (0.2.3-0ubuntu2~ppa1~label1) lucid; urgency=low * Upstream Merge diff --git a/src/indicator-application.c b/src/indicator-application.c index 9c12474..9b06213 100644 --- a/src/indicator-application.c +++ b/src/indicator-application.c @@ -608,7 +608,7 @@ get_applications_helper (gpointer data, gpointer user_data) { GValueArray * array = (GValueArray *)data; - g_return_if_fail(array->n_values == 5); + g_return_if_fail(array->n_values == 7); const gchar * icon_name = g_value_get_string(g_value_array_get_nth(array, 0)); gint position = g_value_get_int(g_value_array_get_nth(array, 1)); |