diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-location-action.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-11-07 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-location-action.c: (ephy_location_action_finalize): + + Chain up to parent's finalize method. + 2003-11-07 Marco Pesenti Gritti <marco@gnome.org> * src/ephy-completion-model.c: (get_path_real), diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 1cacee0f6..2bc07c414 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -454,6 +454,8 @@ ephy_location_action_finalize (GObject *object) g_list_free (action->priv->actions); g_free (action->priv->address); + + G_OBJECT_CLASS (parent_class)->finalize (object); } const char * |