diff options
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-text-model.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-text-model.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.c b/addressbook/gui/component/select-names/e-select-names-text-model.c index 6aa6a75a9a..c9d1d1177f 100644 --- a/addressbook/gui/component/select-names/e-select-names-text-model.c +++ b/addressbook/gui/component/select-names/e-select-names-text-model.c @@ -18,6 +18,7 @@ #include <addressbook/contact-editor/e-contact-editor.h> #include "e-select-names-text-model.h" +#include "e-addressbook-util.h" static FILE *out = NULL; /* stream for debugging spew */ @@ -714,7 +715,7 @@ e_select_names_text_model_activate_obj (ETextModel *model, gint n) g_return_if_fail (card); /* present read-only contact editor when someone double clicks from here */ - contact_editor = e_contact_editor_new ((ECard *) card, FALSE, NULL, TRUE); + contact_editor = e_addressbook_show_contact_editor (NULL, card, FALSE, FALSE); e_contact_editor_raise (contact_editor); } |