From 14e2e5e92540c66b674aaeb0062e9b872e993c73 Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Wed, 18 Mar 2009 11:34:06 +0300 Subject: [PATCH] fix compilation order issue with child-properties --- gtk/gtk.asd | 2 ++ gtk/gtk.box.lisp | 8 +------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/gtk/gtk.asd b/gtk/gtk.asd index ef242d0..0be89b8 100644 --- a/gtk/gtk.asd +++ b/gtk/gtk.asd @@ -40,6 +40,8 @@ (:file "gtk.container") (:file "gtk.paned") (:file "gtk.child-properties") + + (:file "gtk.generated-child-properties") (:file "gtk.dialog.example") diff --git a/gtk/gtk.box.lisp b/gtk/gtk.box.lisp index dbb787c..c0b29ac 100644 --- a/gtk/gtk.box.lisp +++ b/gtk/gtk.box.lisp @@ -29,10 +29,4 @@ (child g-object) (position :int)) -(export 'box-reorder-child) - -(define-child-property "GtkBox" box-child-expand "expand" "gboolean" t t t) -(define-child-property "GtkBox" box-child-fill "fill" "gboolean" t t t) -(define-child-property "GtkBox" box-child-pack-type "pack-type" "GtkPackType" t t t) -(define-child-property "GtkBox" box-child-padding "padding" "guint" t t t) -(define-child-property "GtkBox" box-child-position "position" "gint" t t t) \ No newline at end of file +(export 'box-reorder-child) \ No newline at end of file -- 1.7.10.4