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/gui/widgets/e-minicard-view-model.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'addressbook/gui/widgets/e-minicard-view-model.c') 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