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/gtkvbbox.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/gtkvbbox.c')
-rw-r--r-- | gtk/gtkvbbox.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk/gtkvbbox.c b/gtk/gtkvbbox.c index af098ec455..2d61ff512e 100644 --- a/gtk/gtkvbbox.c +++ b/gtk/gtkvbbox.c @@ -55,8 +55,6 @@ * gtk_button_box_set_layout(). */ -static GtkButtonBoxStyle default_layout_style = GTK_BUTTONBOX_EDGE; - G_DEFINE_TYPE (GtkVButtonBox, gtk_vbutton_box, GTK_TYPE_BUTTON_BOX) static void @@ -83,10 +81,3 @@ gtk_vbutton_box_new (void) { return g_object_new (GTK_TYPE_VBUTTON_BOX, NULL); } - - -GtkButtonBoxStyle -_gtk_vbutton_box_get_layout_default (void) -{ - return default_layout_style; -} |