diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-11-07 06:18:29 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-11-07 06:18:29 +0800 |
commit | 45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da (patch) | |
tree | f1989ba74348c7c372aca3a5c67c3096c34e1ce7 /shell/e-shell-view.c | |
parent | f2178aee93cf94dbc14c34628ca4671e348d7a2f (diff) | |
download | gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar.gz gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar.bz2 gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar.lz gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar.xz gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.tar.zst gsoc2013-evolution-45cc7467dafdecd1b7f793c72ed8bbb3fe2ee5da.zip |
Make the shell pop-up a warning dialog per component when a component
crashes, instead of a warning dialog for each of the crashed views.
svn path=/trunk/; revision=6458
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index f3ce68ad07..36e41beb6b 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -1163,10 +1163,10 @@ socket_destroy_cb (GtkWidget *socket_widget, gpointer data) e_shell_view_display_uri (shell_view, NULL); - e_notice (GTK_WINDOW (shell_view), GNOME_MESSAGE_BOX_ERROR, - _("Ooops! The view for `%s' has died unexpectedly. :-(\n" - "This probably means that the %s component has crashed."), - uri, e_folder_get_type_string (folder)); + e_shell_component_maybe_crashed (priv->shell, + uri, + e_folder_get_type_string (folder), + shell_view); g_free (copy_of_uri); |