diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-08 07:18:12 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-08 07:18:12 +0800 |
commit | 5e793d76f46de7aa61a7e4d738c7753424041ec8 (patch) | |
tree | 269a91190cc4d9d3db3b9ad1017d16f45f10721f /addressbook/gui/component/select-names/e-select-names-manager.c | |
parent | fffc023e64825d6488fa3d1827fe50d924af3535 (diff) | |
download | gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar.gz gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar.bz2 gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar.lz gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar.xz gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.tar.zst gsoc2013-evolution-5e793d76f46de7aa61a7e4d738c7753424041ec8.zip |
Implemented the get_cards function.
2000-07-07 Christopher James Lahey <clahey@helixcode.com>
* gui/component/select-names/e-select-names-manager.c,
gui/component/select-names/e-select-names-model.c: Implemented the
get_cards function.
* gui/component/select-names/e-select-names.c: Implemented adding
cards through the interface.
svn path=/trunk/; revision=3966
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-manager.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c index 4b0d65902e..51a4d889c1 100644 --- a/addressbook/gui/component/select-names/e-select-names-manager.c +++ b/addressbook/gui/component/select-names/e-select-names-manager.c @@ -239,7 +239,7 @@ EList *e_select_names_manager_get_cards (ESel for (e_iterator_reset(iterator); e_iterator_is_valid(iterator); e_iterator_next(iterator)) { const ESelectNamesManagerSection *section = e_iterator_get(iterator); if (!strcmp(section->id, id)) { - + return e_select_names_model_get_cards(section->model); } } return NULL; |