]> www.fi.muni.cz Git - evince.git/commitdiff
Add missing chain to parent class methods. Fixes bug #433128.
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>
Sun, 29 Apr 2007 17:17:50 +0000 (17:17 +0000)
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Sun, 29 Apr 2007 17:17:50 +0000 (17:17 +0000)
2007-04-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

* cut-n-paste/recent-files/egg-recent-view-uimanager.c:
(egg_recent_view_uimanager_finalize):
* properties/ev-properties-view.c: (ev_properties_view_dispose):
* shell/ev-page-action-widget.c: (ev_page_action_widget_finalize):
* shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_finalize),
(ev_pixbuf_cache_dispose):
* shell/ev-properties-fonts.c: (ev_properties_fonts_dispose):
* shell/ev-tooltip.c: (ev_tooltip_dispose):

Add missing chain to parent class methods. Fixes
bug #433128.

svn path=/trunk/; revision=2428

ChangeLog
cut-n-paste/recent-files/egg-recent-view-uimanager.c
properties/ev-properties-view.c
shell/ev-page-action-widget.c
shell/ev-pixbuf-cache.c
shell/ev-properties-fonts.c
shell/ev-tooltip.c

index ad45a9cba7655a045b613c8776ebbae8fe6a02a2..fa91dddbb3df656b2c4189c4479c1aae6c51e89d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2007-04-29  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
+
+       * cut-n-paste/recent-files/egg-recent-view-uimanager.c:
+       (egg_recent_view_uimanager_finalize):
+       * properties/ev-properties-view.c: (ev_properties_view_dispose):
+       * shell/ev-page-action-widget.c: (ev_page_action_widget_finalize):
+       * shell/ev-pixbuf-cache.c: (ev_pixbuf_cache_finalize),
+       (ev_pixbuf_cache_dispose):
+       * shell/ev-properties-fonts.c: (ev_properties_fonts_dispose):
+       * shell/ev-tooltip.c: (ev_tooltip_dispose):
+       
+       Add missing chain to parent class methods. Fixes
+       bug #433128.
+
 2007-04-22  Brian Pepple  <bpepple@fedoraproject.org>
 
        * data/Makefile.am (update-icon-cache): Updates
index 70d663916e5af80d7fe9fc530fd8548593ea33cc..b8e3d4de042640a344efbd8e081e499ed9ef2dd7 100644 (file)
@@ -522,6 +522,8 @@ egg_recent_view_uimanager_finalize (GObject *object)
                g_object_unref (view->client);
                view->client = NULL;
        }
+
+       G_OBJECT_CLASS (egg_recent_view_uimanager_parent_class)->finalize (object);
 }
 
 static void
index 1b8f1fb79dbfe4a21b3419e2567a981950c851c9..2c2d8f0d37e4b5e32321c2b59ae8fcd9283f3e1c 100644 (file)
@@ -96,6 +96,8 @@ ev_properties_view_dispose (GObject *object)
                g_object_unref (properties->xml);
                properties->xml = NULL;
        }
+
+       G_OBJECT_CLASS (ev_properties_view_parent_class)->dispose (object);
 }
 
 static void
index 0212fce740d1c52e8756c91ce621bdbff48aba63..2bef853d583e75b8f269eff5ec90822cd1603aab 100644 (file)
@@ -77,6 +77,8 @@ ev_page_action_widget_finalize (GObject *object)
        EvPageActionWidget *action_widget = EV_PAGE_ACTION_WIDGET (object);
 
        ev_page_action_widget_set_page_cache (action_widget, NULL);
+
+       G_OBJECT_CLASS (ev_page_action_widget_parent_class)->finalize (object);
 }
 
 static void
index dbabf1cd639625c841f8b529e26ad101e560c814..ed782a32186b3b6112143cd49d52e830b88ed1cc 100644 (file)
@@ -131,6 +131,8 @@ ev_pixbuf_cache_finalize (GObject *object)
        g_free (pixbuf_cache->prev_job);
        g_free (pixbuf_cache->job_list);
        g_free (pixbuf_cache->next_job);
+
+       G_OBJECT_CLASS (ev_pixbuf_cache_parent_class)->finalize (object);
 }
 
 static void
@@ -195,6 +197,8 @@ ev_pixbuf_cache_dispose (GObject *object)
        for (i = 0; i < PAGE_CACHE_LEN (pixbuf_cache); i++) {
                dispose_cache_job_info (pixbuf_cache->job_list + i, pixbuf_cache);
        }
+
+       G_OBJECT_CLASS (ev_pixbuf_cache_parent_class)->dispose (object);
 }
 
 
index b50206fa97a0fda60a0c572ab046e92aa5e66f1f..54ed063d15eb6be900bfb521746034a0b949d129 100644 (file)
@@ -73,6 +73,8 @@ ev_properties_fonts_dispose (GObject *object)
                g_object_unref (properties->fonts_job);         
                properties->fonts_job = NULL;
        }
+
+       G_OBJECT_CLASS (ev_properties_fonts_parent_class)->dispose (object);
 }
 
 static void
index f66f22f53f4ad831dc490be294905283d6b74c7a..9f0cf65b023df691224fed77bfeff418c59d345f 100644 (file)
@@ -66,6 +66,8 @@ ev_tooltip_dispose (GObject *object)
                g_source_remove (tooltip->priv->timer_tag);
                tooltip->priv->timer_tag = 0;
        }
+
+       G_OBJECT_CLASS (ev_tooltip_parent_class)->dispose (object);
 }
 
 static void