From dc0dde995dba8c91aed152f236a383e27e8a02a3 Mon Sep 17 00:00:00 2001 From: Tobias Mueller Date: Fri, 8 May 2009 16:57:48 +0200 Subject: [PATCH] Removed deprecated call to gtk_scale_button_get_orientation and use gtk_orientable_set_orientation instead. Fixes bug 581878. --- tests/testvolumebutton.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testvolumebutton.c b/tests/testvolumebutton.c index 01ff5ddbe2..ee1d2bd7e5 100644 --- a/tests/testvolumebutton.c +++ b/tests/testvolumebutton.c @@ -31,15 +31,15 @@ static void toggle_orientation (GtkWidget *button, GtkWidget *scalebutton) { - if (gtk_scale_button_get_orientation (GTK_SCALE_BUTTON (scalebutton)) == + if (gtk_orientable_get_orientation (GTK_ORIENTABLE (scalebutton)) == GTK_ORIENTATION_HORIZONTAL) { - gtk_scale_button_set_orientation (GTK_SCALE_BUTTON (scalebutton), + gtk_orientable_set_orientation (GTK_ORIENTABLE (scalebutton), GTK_ORIENTATION_VERTICAL); } else { - gtk_scale_button_set_orientation (GTK_SCALE_BUTTON (scalebutton), + gtk_orientable_set_orientation (GTK_ORIENTABLE (scalebutton), GTK_ORIENTATION_HORIZONTAL); } }