X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/83b7577c3fb08c2925ded076d67a2d91bae1c9cc..84d58948bc9cf543ac43e17da28d1a832baeff1a:/examples/testgtk.lisp diff --git a/examples/testgtk.lisp b/examples/testgtk.lisp index 514510d..04047c2 100644 --- a/examples/testgtk.lisp +++ b/examples/testgtk.lisp @@ -1702,7 +1702,7 @@ (defun create-toolbar (window) :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 @@ (defun create-toolbar (window) :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 @@ (defun create-main-window (&optional display) ("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)