diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-20 06:43:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-20 06:43:29 +0800 |
commit | f4d748a85c534cb8a693b6a1f1b3353adfd73b5b (patch) | |
tree | 2a793f70989026a6b8706215e0ddefb413022d7c /shell/e-shell-window-private.c | |
parent | 94ec01deda562c323ead315c4ea48043db68b8d0 (diff) | |
download | gsoc2013-evolution-f4d748a85c534cb8a693b6a1f1b3353adfd73b5b.tar.gz gsoc2013-evolution-f4d748a85c534cb8a693b6a1f1b3353adfd73b5b.tar.zst gsoc2013-evolution-f4d748a85c534cb8a693b6a1f1b3353adfd73b5b.zip |
Fix similar weak pointer issues throughout.
Diffstat (limited to 'shell/e-shell-window-private.c')
-rw-r--r-- | shell/e-shell-window-private.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/e-shell-window-private.c b/shell/e-shell-window-private.c index bb74e35ced..71617433d1 100644 --- a/shell/e-shell-window-private.c +++ b/shell/e-shell-window-private.c @@ -449,6 +449,12 @@ e_shell_window_private_dispose (EShellWindow *shell_window) priv->signal_handler_ids = NULL; } + if (priv->shell != NULL) { + g_object_remove_weak_pointer ( + G_OBJECT (priv->shell), &priv->shell); + priv->shell = NULL; + } + DISPOSE (priv->ui_manager); g_hash_table_remove_all (priv->loaded_views); |