summaryrefslogtreecommitdiff
path: root/gtk/gtkdialog.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-02-07 07:30:37 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-02-07 07:30:37 -0500
commitbeb8c290d1c7a7b5307dfd9e4c446a91ad48a507 (patch)
tree350d69e7151865603e17923d28890353f2508426 /gtk/gtkdialog.c
parent14eb34874a63719c77db36f10c615c70f9179e49 (diff)
downloadgtk+-beb8c290d1c7a7b5307dfd9e4c446a91ad48a507.tar.gz
Always chain up in ::style-updated
This was not handled consistently, but the default handler does useful things, so we should always chain up.
Diffstat (limited to 'gtk/gtkdialog.c')
-rw-r--r--gtk/gtkdialog.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c
index 2e8ddadf6d..228aab354c 100644
--- a/gtk/gtkdialog.c
+++ b/gtk/gtkdialog.c
@@ -508,6 +508,8 @@ gtk_dialog_map (GtkWidget *widget)
static void
gtk_dialog_style_updated (GtkWidget *widget)
{
+ GTK_WIDGET_CLASS (gtk_dialog_parent_class)->style_updated (widget);
+
update_spacings (GTK_DIALOG (widget));
}