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/gtkhbbox.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/gtkhbbox.c')
-rw-r--r-- | gtk/gtkhbbox.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtkhbbox.c b/gtk/gtkhbbox.c index ea9c1f843b..50131d1ea1 100644 --- a/gtk/gtkhbbox.c +++ b/gtk/gtkhbbox.c @@ -92,5 +92,11 @@ gtk_hbutton_box_get_layout_default (void) return default_layout_style; } +GtkButtonBoxStyle +_gtk_hbutton_box_get_layout_default (void) +{ + return default_layout_style; +} + #define __GTK_HBUTTON_BOX_C__ #include "gtkaliasdef.c" |