From 0b77bad41d2bb901ab5d0f6e68c15b30e8be9e3b Mon Sep 17 00:00:00 2001 Message-Id: <0b77bad41d2bb901ab5d0f6e68c15b30e8be9e3b.1714803919.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 6 Feb 2006 12:01:11 +0000 Subject: [PATCH] New file gtkselection.lisp Organization: Straylight/Edgeware From: espen --- gtk/export.lisp | 1 + gtk/gtk.asd | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gtk/export.lisp b/gtk/export.lisp index c7d5c1f..df5d23a 100644 --- a/gtk/export.lisp +++ b/gtk/export.lisp @@ -8,5 +8,6 @@ (export-from-file #p"clg:gtk;gtk.lisp") (export-from-file #p"clg:gtk;gtktree.lisp") (export-from-file #p"clg:gtk;gtktext.lisp") (export-from-file #p"clg:gtk;gtkaction.lisp") +(export-from-file #p"clg:gtk;gtkselection.lisp") (export-from-file #p"clg:gtk;gtkutils.lisp") (export-from-file #p"clg:gtk;gtkstyle.lisp") diff --git a/gtk/gtk.asd b/gtk/gtk.asd index 0207cb6..d7359a0 100644 --- a/gtk/gtk.asd +++ b/gtk/gtk.asd @@ -32,7 +32,8 @@ (:file "gtktree" :depends-on ("gtktypes")) (:file "gtktext" :depends-on ("gtktypes")) (:file "gtkaction" :depends-on ("gtktypes")) + (:file "gtkselection" :depends-on ("gtktypes")) (:file "gtkstyle" :depends-on ("gtktypes")) (:file "gtk" :depends-on ("gtktypes")) (:file "gtkutils" :depends-on ("gtk")) - (:file "export" :depends-on ("gtktypes" "gtkwidget" "gtkcontainer" "gtk" "gtktree" "gtkaction" "gtkutils" "gtkstyle")))) + (:file "export" :depends-on ("gtktypes" "gtkwidget" "gtkcontainer" "gtk" "gtktree" "gtkaction" "gtkselection" "gtkutils" "gtkstyle")))) -- [mdw]