gtk/gtk.lisp: Apparently when you ask for a stock Button, you get a Bin.
[clg] / examples / testgtk.lisp
index 514510d..04047c2 100644 (file)
@@ -1702,7 +1702,7 @@ This one is underlined in quite a funky fashion"
           :tip-private "Toolbar/Horizontal"
           :signal (list 'clicked 
                    #'(lambda (toolbar) 
-                       (setf (toolbar-orientation toolbar) :horizontal))
+                       (setf (orientable-orientation toolbar) :horizontal))
                    :object :parent))
 
    :child (make-instance 'tool-button
@@ -1711,7 +1711,7 @@ This one is underlined in quite a funky fashion"
           :tip-private "Toolbar/Vertical"
           :signal (list 'clicked 
                    #'(lambda (toolbar) 
-                       (setf (toolbar-orientation toolbar) :vertical))
+                       (setf (orientable-orientation toolbar) :vertical))
                    :object :parent))
 
    :child (make-instance 'separator-tool-item)
@@ -1920,7 +1920,7 @@ This one is underlined in quite a funky fashion"
            ("cursors" create-cursors)
            ("dialog" create-dialog)
            ("entry" create-entry)
-           ("enxpander" create-expander)
+           ("expander" create-expander)
            ("file chooser" create-file-chooser)
            ("font selection" create-font-selection)
            ("handle box" create-handle-box)