[gtk+] Removed deprecated call to gtk_scale_button_get_orientation



commit dc0dde995dba8c91aed152f236a383e27e8a02a3
Author: Tobias Mueller <tobiasmue gnome org>
Date:   Fri May 8 16:57:48 2009 +0200

    Removed deprecated call to gtk_scale_button_get_orientation
    
    and use gtk_orientable_set_orientation instead.
    Fixes bug 581878.
---
 tests/testvolumebutton.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/testvolumebutton.c b/tests/testvolumebutton.c
index 01ff5dd..ee1d2bd 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);
     }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]