diff options
author | Chris Toshok <toshok@ximian.com> | 2001-03-02 20:19:25 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-03-02 20:19:25 +0800 |
commit | df2372ad84e0631dbae44d87de3556b71e559e8a (patch) | |
tree | 1870cd44c7bde4127c67856873c2398dfa52b8bb | |
parent | dad9e73fd95183179038a5f77789d8f58aa93317 (diff) | |
download | gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar.gz gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar.bz2 gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar.lz gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar.xz gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.tar.zst gsoc2013-evolution-df2372ad84e0631dbae44d87de3556b71e559e8a.zip |
track change to e_contact_editor_new.
2001-03-02 Chris Toshok <toshok@ximian.com>
* gui/component/select-names/e-select-names-text-model.c
(e_select_names_text_model_activate_obj): track change to
e_contact_editor_new.
svn path=/trunk/; revision=8518
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-text-model.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 760cbd3215..d3e19f5f54 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2001-03-02 Chris Toshok <toshok@ximian.com> + * gui/component/select-names/e-select-names-text-model.c + (e_select_names_text_model_activate_obj): track change to + e_contact_editor_new. + +2001-03-02 Chris Toshok <toshok@ximian.com> + * backend/pas/pas-backend-ldap.c (add_objectclass_mod): add objectclasses for "person", "organizationalPerson", and "top" as well, just to be complete. 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 71bb4b3533..8590c752b0 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 @@ -691,7 +691,7 @@ e_select_names_text_model_activate_obj (ETextModel *model, gint n) card = e_select_names_model_get_card (source, i); g_return_if_fail (card); - contact_editor = e_contact_editor_new ((ECard *) card, FALSE); + contact_editor = e_contact_editor_new ((ECard *) card, FALSE, TRUE); e_contact_editor_raise (contact_editor); } |