diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-folder-commands.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 71c794c274..3825e36396 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +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 + 2003-05-02 Not Zed <NotZed@Ximian.com> * e-shell-about-box.c (text[]): grepped changelogs and added all 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); |