diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-10 22:45:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-10 22:45:23 +0800 |
commit | 644987ebd95b4f53758d7ec31cd6be832c08442c (patch) | |
tree | cfb0182c382511513bf988db28aa76940b9bc78a | |
parent | a887010f6afafd154b9cd41b1b4829aba2a0ec22 (diff) | |
download | gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar.gz gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar.bz2 gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar.lz gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar.xz gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.tar.zst gsoc2013-epiphany-644987ebd95b4f53758d7ec31cd6be832c08442c.zip |
Call parent class' finalize method.
2004-01-10 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (ephy_notebook_finalize):
Call parent class' finalize method.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2004-01-10 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-notebook.c: (ephy_notebook_finalize): + + Call parent class' finalize method. + 2004-01-09 Christian Persch <chpe@cvs.gnome.org> * help/C/epiphany-C.omf: diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 44284559d..c1b7eb367 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -780,6 +780,8 @@ ephy_notebook_finalize (GObject *object) g_free (notebook->priv); LOG ("EphyNotebook finalised %p", object) + + G_OBJECT_CLASS (parent_class)->finalize (object); } static void |