diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-03-03 23:02:51 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-03-03 23:05:56 +0800 |
commit | d6c60c80075fac5b34d23d37ec7826835fd02cd6 (patch) | |
tree | bae723179eb89068dadaec5cb915f3aba611edd6 /libempathy-gtk | |
parent | 21ffdb809e2ce2f9a67977ccdc2527a887e54d33 (diff) | |
download | gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar.gz gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar.bz2 gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar.lz gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar.xz gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.tar.zst gsoc2013-empathy-d6c60c80075fac5b34d23d37ec7826835fd02cd6.zip |
Use the right marshaller for account-created
Don't try to marshal G_TYPE_OBJECT values with a _POINTER marshaller.
Fixes: #611224
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-account-widget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-account-widget.c b/libempathy-gtk/empathy-account-widget.c index e75c683b7..733fa383b 100644 --- a/libempathy-gtk/empathy-account-widget.c +++ b/libempathy-gtk/empathy-account-widget.c @@ -1902,7 +1902,7 @@ empathy_account_widget_class_init (EmpathyAccountWidgetClass *klass) signals[ACCOUNT_CREATED] = g_signal_new ("account-created", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0, NULL, NULL, - g_cclosure_marshal_VOID__POINTER, + g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1, G_TYPE_OBJECT); |