diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/contact-editor/e-contact-editor.c | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 26bb623da4..9d442919f2 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2001-06-14 Chris Toshok <toshok@ximian.com> + + * contact-editor/e-contact-editor.c (delete_cb): save ourselves a + function call - call close_dialog instead of file_close_cb. + 2001-06-14 Jeffrey Stedfast <fejj@ximian.com> * gui/component/addressbook-component.c: Set the diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c index 664b442303..4be7b90303 100644 --- a/addressbook/contact-editor/e-contact-editor.c +++ b/addressbook/contact-editor/e-contact-editor.c @@ -763,7 +763,7 @@ delete_cb (GtkWidget *widget, gpointer data) gtk_signal_emit (GTK_OBJECT (ce), contact_editor_signals[DELETE_CARD], card); - file_close_cb(widget, data); + close_dialog (ce); } gtk_object_unref(GTK_OBJECT(card)); diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 664b442303..4be7b90303 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -763,7 +763,7 @@ delete_cb (GtkWidget *widget, gpointer data) gtk_signal_emit (GTK_OBJECT (ce), contact_editor_signals[DELETE_CARD], card); - file_close_cb(widget, data); + close_dialog (ce); } gtk_object_unref(GTK_OBJECT(card)); |