diff options
author | Christian Dywan <christian@twotoasts.de> | 2009-10-07 18:30:17 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-05-03 01:40:41 +0200 |
commit | 2da9103e0c95966828a19cfd60dd9c31ef81bd7a (patch) | |
tree | ddd29cbee554d9869c1858dcbea82a86e56f62bf /gtk/gtkscalebutton.c | |
parent | 032b38ccfdf62c57ccfebf39f53f04e0337ef4d7 (diff) | |
download | gtk+-2da9103e0c95966828a19cfd60dd9c31ef81bd7a.tar.gz |
Remove deprecated GtkScaleButton functions
Diffstat (limited to 'gtk/gtkscalebutton.c')
-rw-r--r-- | gtk/gtkscalebutton.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/gtk/gtkscalebutton.c b/gtk/gtkscalebutton.c index 7259622001..029123b10b 100644 --- a/gtk/gtkscalebutton.c +++ b/gtk/gtkscalebutton.c @@ -707,46 +707,6 @@ gtk_scale_button_set_adjustment (GtkScaleButton *button, } /** - * gtk_scale_button_get_orientation: - * @button: a #GtkScaleButton - * - * Gets the orientation of the #GtkScaleButton's popup window. - * - * Returns: the #GtkScaleButton's orientation. - * - * Since: 2.14 - * - * Deprecated: 2.16: Use gtk_orientable_get_orientation() instead. - **/ -GtkOrientation -gtk_scale_button_get_orientation (GtkScaleButton *button) -{ - g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), GTK_ORIENTATION_VERTICAL); - - return button->priv->orientation; -} - -/** - * gtk_scale_button_set_orientation: - * @button: a #GtkScaleButton - * @orientation: the new orientation - * - * Sets the orientation of the #GtkScaleButton's popup window. - * - * Since: 2.14 - * - * Deprecated: 2.16: Use gtk_orientable_set_orientation() instead. - **/ -void -gtk_scale_button_set_orientation (GtkScaleButton *button, - GtkOrientation orientation) -{ - g_return_if_fail (GTK_IS_SCALE_BUTTON (button)); - - gtk_scale_button_set_orientation_private (button, orientation); -} - -/** * gtk_scale_button_get_plus_button: * @button: a #GtkScaleButton * |