GtkScale: Always chain up in notify

Pointed out by Stefan Sauer.
This commit is contained in:
Matthias Clasen 2012-01-16 18:05:44 -05:00
parent edd888f92b
commit 57126ae56b

View File

@ -200,7 +200,8 @@ gtk_scale_notify (GObject *object,
compare_marks,
GINT_TO_POINTER (gtk_range_get_inverted (GTK_RANGE (scale))));
}
else if (G_OBJECT_CLASS (gtk_scale_parent_class)->notify)
if (G_OBJECT_CLASS (gtk_scale_parent_class)->notify)
G_OBJECT_CLASS (gtk_scale_parent_class)->notify (object, pspec);
}