diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-08-12 23:22:07 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-08-12 23:25:10 -0400 |
commit | 6334d13de56ba9d3e84916f2c7f668a6e94e783d (patch) | |
tree | 8c7c13a93bc2cd0c50e2103fa74675ee1a99d470 /gtk/gtkhbbox.c | |
parent | 05e33f69eb8dc04a69117845c9dfb474a8af5cc3 (diff) | |
download | gtk+-6334d13de56ba9d3e84916f2c7f668a6e94e783d.tar.gz |
Remove some leftovers of deprecated functionality
There were some vestiges of the gtk_{h,v}button_box_set_default_layout()
functionality left. These are gone now. I have also removed
the GTK_BUTTONBOX_DEFAULT value in GtkButtonBoxStyle, but the other
values have been kept at their numeric values, to avoid more serious
ABI change.
Diffstat (limited to 'gtk/gtkhbbox.c')
-rw-r--r-- | gtk/gtkhbbox.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtkhbbox.c b/gtk/gtkhbbox.c index 87174a7f1a..a8b4ed676b 100644 --- a/gtk/gtkhbbox.c +++ b/gtk/gtkhbbox.c @@ -29,8 +29,6 @@ #include "gtkorientable.h" #include "gtkintl.h" -static gint default_layout_style = GTK_BUTTONBOX_EDGE; - G_DEFINE_TYPE (GtkHButtonBox, gtk_hbutton_box, GTK_TYPE_BUTTON_BOX) static void @@ -51,8 +49,3 @@ gtk_hbutton_box_new (void) return g_object_new (GTK_TYPE_HBUTTON_BOX, NULL); } -GtkButtonBoxStyle -_gtk_hbutton_box_get_layout_default (void) -{ - return default_layout_style; -} |