From 5b1b4e6acf65fa4c9d3cbdea5bf45047493f4253 Mon Sep 17 00:00:00 2001 Message-Id: <5b1b4e6acf65fa4c9d3cbdea5bf45047493f4253.1715220680.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 26 Feb 2006 11:51:02 +0000 Subject: [PATCH] Doesn't import symbols from the GTK package into CL-USER any more Organization: Straylight/Edgeware From: espen --- hello-world.lisp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 () -- [mdw]