aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-save-as.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-10-27 02:29:39 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-10-27 02:29:39 +0800
commit33b867e6ccedfbc0fe36f416f49882d314d9e486 (patch)
tree4e9f5ea0a6fd279dc39bcc20e9c57365c77bfdb0 /addressbook/gui/contact-editor/e-contact-save-as.c
parent9cf4da473a8f51c9dccce3ca94945730e4445c5a (diff)
downloadgsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar.gz
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar.bz2
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar.lz
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar.xz
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.tar.zst
gsoc2013-evolution-33b867e6ccedfbc0fe36f416f49882d314d9e486.zip
Remove bad dialog ref-counting crap.
2001-10-26 Jon Trowbridge <trow@ximian.com> * gui/contact-editor/e-contact-save-as.c (file_exists): Remove bad dialog ref-counting crap. * gui/contact-editor/e-contact-editor.c (save_card): Ref our EContactEditor, since we are holding a pointer to it in EditorCloseStruct. (card_modified_cb): Unref our EContactEditor when we free our EditorCloseStruct. (card_added_cb): Unref our EContactEditor when we free our EditorCloseStruct. svn path=/trunk/; revision=14157
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-save-as.c')
-rw-r--r--addressbook/gui/contact-editor/e-contact-save-as.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-save-as.c b/addressbook/gui/contact-editor/e-contact-save-as.c
index ec174615e9..2573eab1b3 100644
--- a/addressbook/gui/contact-editor/e-contact-save-as.c
+++ b/addressbook/gui/contact-editor/e-contact-save-as.c
@@ -196,7 +196,6 @@ file_exists(GtkFileSelection *filesel, const char *filename)
gui = glade_xml_new (EVOLUTION_GLADEDIR "/file-exists.glade", NULL);
dialog = GNOME_DIALOG(glade_xml_get_widget(gui, "dialog-exists"));
- gtk_widget_ref(GTK_WIDGET(dialog));
label = glade_xml_get_widget (gui, "label-exists");
if (GTK_IS_LABEL (label)) {
@@ -210,8 +209,6 @@ file_exists(GtkFileSelection *filesel, const char *filename)
gtk_widget_show (GTK_WIDGET (dialog));
result = gnome_dialog_run_and_close(dialog);
- gtk_widget_unref(GTK_WIDGET(dialog));
- gtk_widget_destroy(GTK_WIDGET(dialog));
g_free(gui);
return result;