aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-commands.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-05-08 01:27:25 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-05-08 01:27:25 +0800
commit3e8897cfb3793f9f07f0a910995cb731472bb682 (patch)
treec656c84ed8ecdac1785e074aaeea5fb21a6aedfa /shell/e-shell-folder-commands.c
parent5257f9dc8476832e230a406c04e5d118088773fc (diff)
downloadgsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar.gz
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar.bz2
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar.lz
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar.xz
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.tar.zst
gsoc2013-evolution-3e8897cfb3793f9f07f0a910995cb731472bb682.zip
don't pass NO_SEPARATOR flag as per gtkmessagedialog warning
2003-05-07 JP Rosevear <jpr@ximian.com> * e-shell-folder-commands.c (delete_dialog): don't pass NO_SEPARATOR flag as per gtkmessagedialog warning svn path=/trunk/; revision=21123
Diffstat (limited to 'shell/e-shell-folder-commands.c')
-rw-r--r--shell/e-shell-folder-commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c
index a0e8dd3c31..5d8a644ff5 100644
--- a/shell/e-shell-folder-commands.c
+++ b/shell/e-shell-folder-commands.c
@@ -399,7 +399,7 @@ delete_dialog (EShellView *shell_view, const char *folder_name)
char *title;
dialog = gtk_message_dialog_new (GTK_WINDOW (shell_view),
- GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR,
+ GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
_("Really delete folder \"%s\"?"), folder_name);