From f9c707b0aab29a0ed136fd548587a40e7098c594 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 4 Dec 2004 18:28:04 +0000 Subject: [PATCH 1/1] Adding gtktext.lisp and gtkaction.lisp Organization: Straylight/Edgeware From: espen --- gtk/export.lisp | 2 ++ gtk/gtk.asd | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gtk/export.lisp b/gtk/export.lisp index 19fbd15..c872543 100644 --- a/gtk/export.lisp +++ b/gtk/export.lisp @@ -5,4 +5,6 @@ (export-from-file #p"clg:gtk;gtktypes.lisp") (export-from-file #p"clg:gtk;gtkwidget.lisp") (export-from-file #p"clg:gtk;gtkcontainer.lisp") (export-from-file #p"clg:gtk;gtk.lisp") +(export-from-file #p"clg:gtk;gtktree.lisp") +(export-from-file #p"clg:gtk;gtkaction.lisp") (export-from-file #p"clg:gtk;gtkutils.lisp") diff --git a/gtk/gtk.asd b/gtk/gtk.asd index 05f3c95..423e37f 100644 --- a/gtk/gtk.asd +++ b/gtk/gtk.asd @@ -25,6 +25,8 @@ (:file "gtkwidget" :depends-on ("gtktypes")) (:file "gtkcontainer" :depends-on ("gtktypes")) (:file "gtktree" :depends-on ("gtktypes")) + (:file "gtktext" :depends-on ("gtktypes")) + (:file "gtkaction" :depends-on ("gtktypes")) (:file "gtk" :depends-on ("gtktypes")) (:file "gtkutils" :depends-on ("gtk")) (:file "export" :depends-on ("gtktypes" "gtk")))) -- [mdw]