diff options
author | Michael Natterer <mitch@gimp.org> | 2009-07-08 17:01:32 +0200 |
---|---|---|
committer | Michael Natterer <mitch@gimp.org> | 2009-07-08 17:01:32 +0200 |
commit | 2de23ea6cffba39d239eaf7307c418801ad60abd (patch) | |
tree | 52330050038bcc009d70429fec17fa9d51517a99 /gtk/gtkvbbox.c | |
parent | 6fc6903c16e92a21fb19e5d48140c01ba7ccae80 (diff) | |
download | gtk+-2de23ea6cffba39d239eaf7307c418801ad60abd.tar.gz |
Fix the remaining issues that broke the PLT check
Add internal API for the default button box layouts to so we don't
need to call deprectated GTK+ functions (which are invisible with
GTK_DISABLE_DEPRECATED).
Diffstat (limited to 'gtk/gtkvbbox.c')
-rw-r--r-- | gtk/gtkvbbox.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtkvbbox.c b/gtk/gtkvbbox.c index 0f9262171e..72ba3851b5 100644 --- a/gtk/gtkvbbox.c +++ b/gtk/gtkvbbox.c @@ -94,5 +94,12 @@ gtk_vbutton_box_get_layout_default (void) return default_layout_style; } +GtkButtonBoxStyle +_gtk_vbutton_box_get_layout_default (void) +{ + return default_layout_style; +} + + #define __GTK_VBBOX_C__ #include "gtkaliasdef.c" |