From 34aaf812b1b4a5c2401c5f832c5094a05033a3e4 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 21 Feb 2001 17:39:29 +0000 Subject: Made this pay attention to the return value of e_sexp_parse. 2001-02-21 Christopher James Lahey * backend/pas/pas-backend-file.c (pas_backend_file_search): Made this pay attention to the return value of e_sexp_parse. * gui/component/select-names/e-select-names-text-model.c (e_select_names_text_model_activate_obj): Fixed a const inconsistency here. svn path=/trunk/; revision=8321 --- addressbook/gui/component/select-names/e-select-names-text-model.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'addressbook/gui/component/select-names') 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 5983ccb93d..13054eb10e 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 @@ -296,8 +296,9 @@ e_select_names_text_model_activate_obj (ETextModel *model, gint n) data = e_iterator_get (iterator); card = E_CARD (data->card); - - contact_editor = e_contact_editor_new (card, FALSE); + + /* FIXME: const incorrectness here. */ + contact_editor = e_contact_editor_new ((ECard *) card, FALSE); e_contact_editor_raise (contact_editor); } -- cgit v1.2.3