aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--src/indicator-application.c2
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));