diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-04 19:42:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-12-04 19:42:49 +0800 |
commit | dc0d0ee010319425b19d8d8d493f0bc489d5fd07 (patch) | |
tree | 19d4f0e1b3f04bcc09d96ecca5fbe27bc5c98e5f /addressbook/gui/widgets | |
parent | 6375ba9a6cf327e665d98c5820992ab7fb80a6d0 (diff) | |
download | gsoc2013-evolution-dc0d0ee010319425b19d8d8d493f0bc489d5fd07.tar.gz gsoc2013-evolution-dc0d0ee010319425b19d8d8d493f0bc489d5fd07.tar.zst gsoc2013-evolution-dc0d0ee010319425b19d8d8d493f0bc489d5fd07.zip |
Implement bug #263268 - Contact categories need to be able to be filtered by
"not categorized". Also fix a crasher.
svn path=/branches/kill-bonobo/; revision=36831
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 216a7c77a6..a979e5a1cb 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -666,9 +666,10 @@ addressbook_view_class_init (EAddressbookViewClass *class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EAddressbookViewClass, open_contact), NULL, NULL, - g_cclosure_marshal_VOID__OBJECT, - G_TYPE_NONE, 1, - E_TYPE_CONTACT); + e_marshal_VOID__OBJECT_BOOLEAN, + G_TYPE_NONE, 2, + E_TYPE_CONTACT, + G_TYPE_BOOLEAN); signals[POPUP_EVENT] = g_signal_new ( "popup-event", |