diff options
author | Javier Jardón <javierjc1982@gmail.com> | 2009-10-08 17:53:55 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-05-03 01:42:37 +0200 |
commit | 5ed56120a6d45280dd37496033c0113b2563f54e (patch) | |
tree | 9af427c00376965454fcba63af8dad18ae1c4e2c /gtk/gtkvbbox.c | |
parent | 0d322676dcb06be62329a7d4373c497993509fbd (diff) | |
download | gtk+-5ed56120a6d45280dd37496033c0113b2563f54e.tar.gz |
Remove deprecated GtkVButtonBox functions
Diffstat (limited to 'gtk/gtkvbbox.c')
-rw-r--r-- | gtk/gtkvbbox.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/gtk/gtkvbbox.c b/gtk/gtkvbbox.c index c6bf3696cf..58a39425ba 100644 --- a/gtk/gtkvbbox.c +++ b/gtk/gtkvbbox.c @@ -85,68 +85,6 @@ gtk_vbutton_box_new (void) return g_object_new (GTK_TYPE_VBUTTON_BOX, NULL); } -/** - * gtk_vbutton_box_set_spacing_default: - * @spacing: an integer value. - * - * Changes the default spacing that is placed between widgets in an - * vertical button box. - * - * Deprecated: 2.0: Use gtk_box_set_spacing() instead. - */ -void -gtk_vbutton_box_set_spacing_default (gint spacing) -{ - default_spacing = spacing; -} - -/** - * gtk_vbutton_box_set_layout_default: - * @layout: a new #GtkButtonBoxStyle. - * - * Sets a new layout mode that will be used by all button boxes. - * - * Deprecated: 2.0: Use gtk_button_box_set_layout() instead. - */ -void -gtk_vbutton_box_set_layout_default (GtkButtonBoxStyle layout) -{ - g_return_if_fail (layout >= GTK_BUTTONBOX_DEFAULT_STYLE && - layout <= GTK_BUTTONBOX_CENTER); - - default_layout_style = layout; -} - -/** - * gtk_vbutton_box_get_spacing_default: - * - * Retrieves the current default spacing for vertical button boxes. This is the number of pixels - * to be placed between the buttons when they are arranged. - * - * Returns: the default number of pixels between buttons. - * - * Deprecated: 2.0: Use gtk_box_get_spacing() instead. - */ -gint -gtk_vbutton_box_get_spacing_default (void) -{ - return default_spacing; -} - -/** - * gtk_vbutton_box_get_layout_default: - * - * Retrieves the current layout used to arrange buttons in button box widgets. - * - * Returns: the current #GtkButtonBoxStyle. - * - * Deprecated: 2.0: Use gtk_button_box_get_layout() instead. - */ -GtkButtonBoxStyle -gtk_vbutton_box_get_layout_default (void) -{ - return default_layout_style; -} GtkButtonBoxStyle _gtk_vbutton_box_get_layout_default (void) |