aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-07-15 13:18:49 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-07-15 13:18:49 +0800
commit05877aea9bad861887d7917bdeb53741b84aeb23 (patch)
tree6d40c69c8ff4c2e07e7399b5894756cb366d035b /shell/e-shell-view.c
parentf6b64ae1df4018a76f4ca65139c5880ac0d946f7 (diff)
downloadgsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar.gz
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar.bz2
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar.lz
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar.xz
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.tar.zst
gsoc2013-evolution-05877aea9bad861887d7917bdeb53741b84aeb23.zip
Fix a crash that could happen by closing one or more views, and then
clicking on the off-line button. svn path=/trunk/; revision=11107
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r--shell/e-shell-view.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 689a299871..ba9022cb8a 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1216,8 +1216,9 @@ e_shell_view_construct (EShellView *shell_view,
bonobo_ui_component_thaw (priv->ui_component, NULL);
- gtk_signal_connect (GTK_OBJECT (shell), "line_status_changed",
- GTK_SIGNAL_FUNC (shell_line_status_changed_cb), view);
+ gtk_signal_connect_while_alive (GTK_OBJECT (shell), "line_status_changed",
+ GTK_SIGNAL_FUNC (shell_line_status_changed_cb), view,
+ GTK_OBJECT (view));
return view;
}