X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/03d90284e12cafbdf617ff4bbec6907d0d36d00a..HEAD:/examples/testgtk.lisp?ds=sidebyside diff --git a/examples/testgtk.lisp b/examples/testgtk.lisp index a4bd8ef..04047c2 100644 --- a/examples/testgtk.lisp +++ b/examples/testgtk.lisp @@ -27,7 +27,7 @@ ;; should probably be considered as being GPL'ed. -;; $Id: testgtk.lisp,v 1.43 2008-03-20 16:05:31 espen Exp $ +;; $Id: testgtk.lisp,v 1.44 2008-12-09 19:37:19 espen Exp $ #+sbcl(require :gtk) #+(or cmu clisp)(asdf:oos 'asdf:load-op :gtk) @@ -951,8 +951,8 @@ This one is underlined in quite a funky fashion" (define-simple-dialog create-notebook (dialog "Notebook") (let ((main (make-instance 'v-box :parent dialog))) - (let ((book-open (gdk:pixbuf-new-from-xpm-data book-open-xpm)) - (book-closed (gdk:pixbuf-new-from-xpm-data book-closed-xpm)) + (let ((book-open (make-instance 'gdk:pixbuf :source book-open-xpm)) + (book-closed (make-instance 'gdk:pixbuf :source book-closed-xpm)) (notebook (make-instance 'notebook :border-width 10 :tab-pos :top :parent main))) @@ -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)