diff options
author | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:48:33 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:48:33 +0800 |
commit | b04bd957c79358e009caf31dafee3889e1ec6492 (patch) | |
tree | b5a25349f7c866a5748c37f37386270e280f6630 /shell/e-shell.c | |
parent | cb46b4039bff5dce4748800950d43d1b1957dbce (diff) | |
download | gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.tar.gz gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.tar.zst gsoc2013-evolution-b04bd957c79358e009caf31dafee3889e1ec6492.zip |
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
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 69c959fbcb..687d34e708 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -73,7 +73,6 @@ #include <bonobo/bonobo-exception.h> #include <bonobo/bonobo-moniker-util.h> -#include <gal/widgets/e-gui-utils.h> #include <gal/util/e-util.h> #include <gconf/gconf-client.h> @@ -172,7 +171,7 @@ pop_up_activation_error_dialog (ESplash *splash, char *error_message; error_message = e_get_activation_failure_msg (ev); - e_notice (GTK_WINDOW (splash), GTK_MESSAGE_ERROR, + e_notice (splash, GTK_MESSAGE_ERROR, _("Cannot activate component %s :\n" "The error from the activation system is:\n" "%s"), @@ -1761,7 +1760,6 @@ e_shell_component_maybe_crashed (EShell *shell, EShellView *shell_view) { EShellPrivate *priv; - GtkWindow *parent_window; EvolutionShellComponentClient *component; GList *p; @@ -1802,12 +1800,7 @@ e_shell_component_maybe_crashed (EShell *shell, priv->crash_type_names = g_list_prepend (priv->crash_type_names, g_strdup (type_name)); - if (shell_view == NULL) - parent_window = NULL; - else - parent_window = GTK_WINDOW (shell_view); - - e_notice (parent_window, GTK_MESSAGE_ERROR, + e_notice (shell_view, GTK_MESSAGE_ERROR, _("The Evolution component that handles folders of type \"%s\"\n" "has unexpectedly quit. You will need to quit Evolution and restart\n" "in order to access that data again."), |