diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 15 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-minicard-view.c | 4 |
2 files changed, 16 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9a29c8c8e4..21956f8bcc 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,17 @@ +2001-03-19 Christopher James Lahey <clahey@ximian.com> + + * Merged branch: + +2001-03-14 Christopher James Lahey <clahey@ximian.com> + + * gui/widgets/e-minicard-view.c: Call + e_selection_model_simple_insert_rows and + e_selection_model_simple_delete_rows instead of + e_selection_model_simple_insert_row and + e_selection_model_simple_delete_row. + +End of branch + 2001-03-17 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-completion.c: Brutally @@ -277,7 +291,6 @@ * backend/ebook/e-book-types.h: Add enum EBookSimpleQueryStatus. - 2001-03-08 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-popup.c diff --git a/addressbook/gui/widgets/e-minicard-view.c b/addressbook/gui/widgets/e-minicard-view.c index 42284b02db..7afe9e6ca3 100644 --- a/addressbook/gui/widgets/e-minicard-view.c +++ b/addressbook/gui/widgets/e-minicard-view.c @@ -184,7 +184,7 @@ create_card(EBookView *book_view, const GList *cards, EMinicardView *view) e_reflow_add_item(E_REFLOW(view), item, &position); - e_selection_model_simple_insert_row(view->selection, position); + e_selection_model_simple_insert_rows(view->selection, position, 1); } } @@ -225,7 +225,7 @@ remove_card(EBookView *book_view, const char *id, EMinicardView *view) { int position; e_reflow_sorted_remove_item(E_REFLOW_SORTED(view), id, &position); - e_selection_model_simple_delete_row(view->selection, position); + e_selection_model_simple_delete_rows(view->selection, position, 1); } static void |