summaryrefslogtreecommitdiff
path: root/gtk/gtktextchild.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-02-22 02:06:49 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-02-22 02:06:49 +0000
commita362428d2a92715eca8e0bbc4ad9fb609fd72fe2 (patch)
treeb7b087dfbe67b4b38d575085748d51dfbd98af2b /gtk/gtktextchild.c
parent8d4f4d5fdeec1b6d68d01d6d6bc4c4c3576b3e97 (diff)
downloadgtk+-a362428d2a92715eca8e0bbc4ad9fb609fd72fe2.tar.gz
Add chains to the parent's ::finalize() handler (#134901, Morten Welinder,
Sun Feb 22 03:03:29 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkaction.c: (gtk_action_finalize): * gtk/gtkclipboard.c: (gtk_clipboard_finalize): * gtk/gtkentrycompletion.c: (gtk_entry_completion_class_init), (gtk_entry_completion_finalize): * gtk/gtkfilechooserwidget.c: (gtk_file_chooser_widget_finalize): * gtk/gtkfilesystemmodel.c: (gtk_file_system_model_class_init), (gtk_file_system_model_finalize): * gtk/gtkicontheme.c: (gtk_icon_theme_class_init), (gtk_icon_theme_finalize): * gtk/gtktextchild.c: (gtk_text_child_anchor_finalize): * gtk/gtkuimanager.c: (gtk_ui_manager_class_init), (gtk_ui_manager_finalize): * modules/input/gtkimcontextxim.c: (gtk_im_context_xim_finalize): Add chains to the parent's ::finalize() handler (#134901, Morten Welinder, patch by Jan Arne Petersen)
Diffstat (limited to 'gtk/gtktextchild.c')
-rw-r--r--gtk/gtktextchild.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtktextchild.c b/gtk/gtktextchild.c
index a92944e3d5..c33aa5117f 100644
--- a/gtk/gtktextchild.c
+++ b/gtk/gtktextchild.c
@@ -400,6 +400,8 @@ gtk_text_child_anchor_finalize (GObject *obj)
}
anchor->segment = NULL;
+
+ G_OBJECT_CLASS (parent_class)->finalize (obj);
}
/**