From 6d07e079108d5ce0fe3f2202540ba11d5d690428 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Tue, 15 May 2001 03:57:37 +0000 Subject: Fix a small error not decreasing the data_count here. 2001-05-14 Christopher James Lahey * gui/widgets/e-minicard-view-model.c (remove_card): Fix a small error not decreasing the data_count here. svn path=/trunk/; revision=9810 --- addressbook/ChangeLog | 5 +++++ addressbook/gui/widgets/e-minicard-view-model.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 39b4f0173e..ba324e0bad 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2001-05-14 Christopher James Lahey + + * gui/widgets/e-minicard-view-model.c (remove_card): Fix a small + error not decreasing the data_count here. + 2001-05-13 Chris Toshok * gui/component/addressbook.h: add prototype for diff --git a/addressbook/gui/widgets/e-minicard-view-model.c b/addressbook/gui/widgets/e-minicard-view-model.c index c58452a3ac..00c0e4fd9f 100644 --- a/addressbook/gui/widgets/e-minicard-view-model.c +++ b/addressbook/gui/widgets/e-minicard-view-model.c @@ -445,7 +445,8 @@ remove_card(EBookView *book_view, for ( i = 0; i < model->data_count; i++) { if (!strcmp(e_card_get_id(model->data[i]), id) ) { gtk_object_unref(GTK_OBJECT(model->data[i])); - memmove(model->data + i, model->data + i + 1, (model->data_count - i - 1) * sizeof (ECardSimple *)); + memmove(model->data + i, model->data + i + 1, (model->data_count - i - 1) * sizeof (ECard *)); + model->data_count --; found = TRUE; } } -- cgit v1.2.3