diff options
author | Chris Toshok <toshok@ximian.com> | 2001-06-15 04:46:49 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2001-06-15 04:46:49 +0800 |
commit | fbb323c3d100a70b794a67b4ed8492e55f651019 (patch) | |
tree | bbd2459e9a3517b5fa274eb4f7a263e19e4a5677 | |
parent | 681b9172bc8a48394377562f58701741ebcc85be (diff) | |
download | gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar.gz gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar.bz2 gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar.lz gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar.xz gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.tar.zst gsoc2013-evolution-fbb323c3d100a70b794a67b4ed8492e55f651019.zip |
save ourselves a function call - call close_dialog instead of
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.
svn path=/trunk/; revision=10238
-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)); |