diff options
author | Milan Crha <mcrha@redhat.com> | 2011-04-19 20:16:34 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:55 +0800 |
commit | 965b91996871cba9088ef9fdfc6218af0a84f825 (patch) | |
tree | 369574e885187a39f3d63f55b9607a459db26793 | |
parent | 63ebe2ef47079a59676ae724bebb7665a2733aa2 (diff) | |
download | gsoc2013-evolution-965b91996871cba9088ef9fdfc6218af0a84f825.tar.gz gsoc2013-evolution-965b91996871cba9088ef9fdfc6218af0a84f825.tar.zst gsoc2013-evolution-965b91996871cba9088ef9fdfc6218af0a84f825.zip |
Bug #647116 - Crash in g_error_matches, e_contact_editor_contact_modified
-rw-r--r-- | addressbook/gui/contact-editor/eab-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/contact-editor/eab-editor.c b/addressbook/gui/contact-editor/eab-editor.c index c5f55edad2..bea34db512 100644 --- a/addressbook/gui/contact-editor/eab-editor.c +++ b/addressbook/gui/contact-editor/eab-editor.c @@ -179,7 +179,7 @@ eab_editor_class_init (EABEditorClass *class) NULL, NULL, e_marshal_NONE__POINTER_OBJECT, G_TYPE_NONE, 2, - G_TYPE_INT, G_TYPE_OBJECT); + G_TYPE_POINTER, G_TYPE_OBJECT); signals[CONTACT_MODIFIED] = g_signal_new ("contact_modified", @@ -189,7 +189,7 @@ eab_editor_class_init (EABEditorClass *class) NULL, NULL, e_marshal_NONE__POINTER_OBJECT, G_TYPE_NONE, 2, - G_TYPE_INT, G_TYPE_OBJECT); + G_TYPE_POINTER, G_TYPE_OBJECT); signals[CONTACT_DELETED] = g_signal_new ("contact_deleted", @@ -199,7 +199,7 @@ eab_editor_class_init (EABEditorClass *class) NULL, NULL, e_marshal_NONE__POINTER_OBJECT, G_TYPE_NONE, 2, - G_TYPE_INT, G_TYPE_OBJECT); + G_TYPE_POINTER, G_TYPE_OBJECT); signals[EDITOR_CLOSED] = g_signal_new ("editor_closed", |