From b04bd957c79358e009caf31dafee3889e1ec6492 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 25 Mar 2003 15:48:33 +0000 Subject: Update for e_notice move. Likewise Likewise Likewise Likewise Likewise * e-folder-dnd-bridge.c: Update for e_notice move. * e-setup.c: Likewise * e-shell-folder-commands.c: Likewise * e-shell-folder-creation-dialog.c: Likewise * e-shell-offline-sync.c: Likewise * e-shell-shared-folder-picker-dialog.c: Likewise * e-shell-view-menu.c: Likewise * e-shell.c: Likewise * evolution-shell-component-utils.c: Likewise * Makefile.am (libeshell_la_LIBADD): libeshell depends on libeutil. * e-corba-storage.c: Fix warnings svn path=/trunk/; revision=20500 --- shell/e-shell-folder-commands.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'shell/e-shell-folder-commands.c') diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c index a8db04915b..b391ba28f1 100644 --- a/shell/e-shell-folder-commands.c +++ b/shell/e-shell-folder-commands.c @@ -26,6 +26,7 @@ #include "e-shell-folder-commands.h" +#include "e-util/e-dialog-utils.h" #include "e-util/e-request.h" #include "e-shell-constants.h" @@ -33,8 +34,6 @@ #include "e-shell-folder-selection-dialog.h" #include "e-shell-utils.h" -#include - #include #include @@ -142,7 +141,7 @@ xfer_result_callback (EStorageSet *storage_set, else fmt = _("Cannot move folder: %s"); - e_notice (GTK_WINDOW (folder_command_data->shell_view), GTK_MESSAGE_ERROR, + e_notice (folder_command_data->shell_view, GTK_MESSAGE_ERROR, fmt, e_storage_result_to_string (result)); } @@ -190,7 +189,7 @@ folder_selection_dialog_folder_selected_callback (EShellFolderSelectionDialog *f else msg = _("Cannot copy a folder over itself."); - e_notice (GTK_WINDOW (folder_selection_dialog), GTK_MESSAGE_ERROR, msg); + e_notice (folder_selection_dialog, GTK_MESSAGE_ERROR, msg); return; } @@ -201,7 +200,7 @@ folder_selection_dialog_folder_selected_callback (EShellFolderSelectionDialog *f if (strncmp (folder_command_data->destination_path, folder_command_data->source_path, source_len) == 0) { - e_notice (GTK_WINDOW (folder_selection_dialog), GTK_MESSAGE_ERROR, + e_notice (folder_selection_dialog, GTK_MESSAGE_ERROR, _("Cannot move a folder into one of its descendants.")); return; } @@ -388,7 +387,7 @@ delete_cb (EStorageSet *storage_set, shell_view = E_SHELL_VIEW (data); if (result != E_STORAGE_OK) - e_notice (GTK_WINDOW (shell_view), GTK_MESSAGE_ERROR, + e_notice (shell_view, GTK_MESSAGE_ERROR, _("Cannot delete folder:\n%s"), e_storage_result_to_string (result)); } @@ -482,7 +481,7 @@ rename_cb (EStorageSet *storage_set, EStorageResult result, void *data) callback_data = (RenameCallbackData *) data; if (result != E_STORAGE_OK) { - e_notice (GTK_WINDOW (callback_data->shell_view), GTK_MESSAGE_ERROR, + e_notice (callback_data->shell_view, GTK_MESSAGE_ERROR, _("Cannot rename folder:\n%s"), e_storage_result_to_string (result)); } else { EFolder *folder; @@ -546,7 +545,7 @@ e_shell_command_rename_folder (EShell *shell, if (e_shell_folder_name_is_valid (new_name, &reason)) break; - e_notice (shell_view != NULL ? GTK_WINDOW (shell_view) : NULL, GTK_MESSAGE_ERROR, + e_notice (shell_view, GTK_MESSAGE_ERROR, _("The specified folder name is not valid: %s"), reason); } @@ -580,10 +579,10 @@ remove_shared_cb (EStorageSet *storage_set, if (result == E_STORAGE_NOTIMPLEMENTED || result == E_STORAGE_UNSUPPORTEDOPERATION) - e_notice (GTK_WINDOW (shell_view), GTK_MESSAGE_ERROR, + e_notice (shell_view, GTK_MESSAGE_ERROR, _("Selected folder does not belong to another user")); else if (result != E_STORAGE_OK) - e_notice (GTK_WINDOW (shell_view), GTK_MESSAGE_ERROR, + e_notice (shell_view, GTK_MESSAGE_ERROR, _("Cannot remove folder:\n%s"), e_storage_result_to_string (result)); } -- cgit v1.2.3