aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-04-19 20:17:11 +0800
committerMilan Crha <mcrha@redhat.com>2011-04-19 20:17:11 +0800
commit525406b7790317ed5f63d1b67ad168c012d4dec9 (patch)
tree024f283b1fedc73fabe233bfc66eab537de0091c
parent3778bd85c711d1173165e47326ff8640cc7fa4ab (diff)
downloadgsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar.gz
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar.bz2
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar.lz
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar.xz
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.tar.zst
gsoc2013-evolution-525406b7790317ed5f63d1b67ad168c012d4dec9.zip
Bug #647116 - Crash in g_error_matches, e_contact_editor_contact_modified
-rw-r--r--addressbook/gui/contact-editor/eab-editor.c6
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",