diff options
author | Milan Crha <mcrha@redhat.com> | 2011-04-19 20:16:34 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-04-19 20:16:34 +0800 |
commit | db35e41399743917106625476ba12b6a5776c056 (patch) | |
tree | 623bc2604b7ceb26bdc7934e9391add0435a1975 /addressbook | |
parent | 5437ef08afdf985caad63d3d15bec5438b30ac11 (diff) | |
download | gsoc2013-evolution-db35e41399743917106625476ba12b6a5776c056.tar.gz gsoc2013-evolution-db35e41399743917106625476ba12b6a5776c056.tar.zst gsoc2013-evolution-db35e41399743917106625476ba12b6a5776c056.zip |
Bug #647116 - Crash in g_error_matches, e_contact_editor_contact_modified
Diffstat (limited to 'addressbook')
-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", |