diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-18 03:55:25 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-18 03:55:25 +0800 |
commit | c56a8e8c2da02675ffd6a37969c11af751b0fc0f (patch) | |
tree | a747576a861c7e63160f7cdc67d3d13be8a96770 /mail/mail-vfolder.c | |
parent | 32f1cfd13fe2d745cc18b71e32c2c19305c480f7 (diff) | |
download | gsoc2013-evolution-c56a8e8c2da02675ffd6a37969c11af751b0fc0f.tar.gz gsoc2013-evolution-c56a8e8c2da02675ffd6a37969c11af751b0fc0f.tar.zst gsoc2013-evolution-c56a8e8c2da02675ffd6a37969c11af751b0fc0f.zip |
Part of a fix for bug #39809
2003-03-17 Jeffrey Stedfast <fejj@ximian.com>
Part of a fix for bug #39809
* mail-vfolder.c (vfolder_edit): Don't add the cancel button here.
* mail-callbacks.c (filter_edit): Don't add the cancel button here.
svn path=/trunk/; revision=20316
Diffstat (limited to 'mail/mail-vfolder.c')
-rw-r--r-- | mail/mail-vfolder.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index c4ad36c8ed..d8f30087d6 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -834,8 +834,7 @@ vfolder_edit (void) vfolder_editor = GTK_WIDGET (vfolder_editor_new (context)); gtk_window_set_title (GTK_WINDOW (vfolder_editor), _("vFolders")); g_signal_connect(vfolder_editor, "response", G_CALLBACK(vfolder_editor_response), NULL); - gtk_dialog_add_button (GTK_DIALOG (vfolder_editor), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); - + gtk_widget_show (vfolder_editor); } |