diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-11-29 20:13:38 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-11-29 20:13:38 +0000 |
commit | 6c42247dd2395bde8e13381312db3851729f7da2 (patch) | |
tree | c0a5bbd0384910464af87e3b6bddcad0139bba0c /src | |
parent | 892d46d42c6858783c89072fae8e6c5295ac73c2 (diff) | |
parent | 4bfe4198605a873fdede8b7cf454b4134ce2ce52 (diff) | |
download | ayatana-indicator-messages-6c42247dd2395bde8e13381312db3851729f7da2.tar.gz ayatana-indicator-messages-6c42247dd2395bde8e13381312db3851729f7da2.tar.bz2 ayatana-indicator-messages-6c42247dd2395bde8e13381312db3851729f7da2.zip |
ImApplicationList: specify right number of args for 'message-added'
This fixes a crash on arm, because g_signal_emit was called with one argument
too many.
Approved by Renato Araujo Oliveira Filho.
Diffstat (limited to 'src')
-rw-r--r-- | src/im-application-list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c index c5e34b7..f0bf362 100644 --- a/src/im-application-list.c +++ b/src/im-application-list.c @@ -269,7 +269,8 @@ im_application_list_class_init (ImApplicationListClass *klass) NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, - 8, + 9, + G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, |