Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2006-04-01 21:00:06 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-04-01 21:00:06 (GMT)
commitf0d4f37e3b6a3433c15e1e35236c1ccffeca4bee (patch)
treea3d3ad8afba7282f797d694988e5f08aa79f7ea2 /shell
parent67a923a1096f1e9765a5d804e4fb9fac39bcfcf2 (diff)
Fix crash on exit, described in the bug #336825.
2006-04-02 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose): Fix crash on exit, described in the bug #336825.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-sidebar-thumbnails.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-sidebar-thumbnails.c b/shell/ev-sidebar-thumbnails.c
index 6ed20a2..ac449d8 100644
--- a/shell/ev-sidebar-thumbnails.c
+++ b/shell/ev-sidebar-thumbnails.c
@@ -102,13 +102,13 @@ ev_sidebar_thumbnails_dispose (GObject *object)
{
EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (object);
- ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
if (sidebar_thumbnails->priv->loading_icon) {
g_object_unref (sidebar_thumbnails->priv->loading_icon);
sidebar_thumbnails->priv->loading_icon = NULL;
}
if (sidebar_thumbnails->priv->list_store) {
+ ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
g_object_unref (sidebar_thumbnails->priv->list_store);
sidebar_thumbnails->priv->list_store = NULL;
}