From: espen Date: Sun, 26 Feb 2006 11:51:02 +0000 (+0000) Subject: Doesn't import symbols from the GTK package into CL-USER any more X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/5b1b4e6acf65fa4c9d3cbdea5bf45047493f4253 Doesn't import symbols from the GTK package into CL-USER any more --- diff --git a/hello-world.lisp b/hello-world.lisp index ab99220..2ce6269 100644 --- a/hello-world.lisp +++ b/hello-world.lisp @@ -1,13 +1,11 @@ -(use-package :gtk) +(gtk:clg-init) -(clg-init) - -(make-instance 'window +(make-instance 'gtk:window ; :type :toplevel :title "Test" :border-width 5 :visible t :show-children t - :child (make-instance 'button + :child (make-instance 'gtk:button :label "Hello World!" :signal (list 'clicked #'(lambda ()