X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/41a559d2b83413bc7d210aadaeb38048c22a72bb..c66e7b945f4e33e1d4a479096608aba685b33637:/gtk/gtkcontainer.lisp diff --git a/gtk/gtkcontainer.lisp b/gtk/gtkcontainer.lisp index d956d0d..1ac33b2 100644 --- a/gtk/gtkcontainer.lisp +++ b/gtk/gtkcontainer.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gtkcontainer.lisp,v 1.13 2004/12/17 00:15:16 espen Exp $ +;; $Id: gtkcontainer.lisp,v 1.14 2004/12/20 20:09:54 espen Exp $ (in-package "GTK") @@ -38,7 +38,7 @@ (defmethod container-add ((container container) (widget widget) &rest args) (%container-add container widget) (when args (setf - (slot-value widget 'child-slots) + (slot-value widget 'child-properties) (apply #'make-instance (gethash (class-of container) *container-to-child-class-mappings*) @@ -51,7 +51,7 @@ (defbinding %container-remove () nil (defmethod container-remove ((container container) (widget widget)) (%container-remove container widget) - (slot-makunbound widget 'child-slots)) + (slot-makunbound widget 'child-properties)) (defbinding %container-child-get-property () nil