aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-02-22 01:39:29 +0800
committerChris Lahey <clahey@src.gnome.org>2001-02-22 01:39:29 +0800
commit34aaf812b1b4a5c2401c5f832c5094a05033a3e4 (patch)
treee7235d13fbdb551582869582303212d78e14b5fc /addressbook/gui/component
parent8738bf7afffc7d2696d6e422e08583d3207ef837 (diff)
downloadgsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar.gz
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar.bz2
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar.lz
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar.xz
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.tar.zst
gsoc2013-evolution-34aaf812b1b4a5c2401c5f832c5094a05033a3e4.zip
Made this pay attention to the return value of e_sexp_parse.
2001-02-21 Christopher James Lahey <clahey@ximian.com> * 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
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-text-model.c5
1 files changed, 3 insertions, 2 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 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);
}