From: Kevin M. Rosenberg Date: Wed, 26 Mar 2003 21:03:22 +0000 (+0000) Subject: r4264: Auto commit for Debian build X-Git-Tag: debian-2.11.0-2~196 X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=commitdiff_plain;h=aba571542f023bf58d62198fdd6bea3e9fff2e27 r4264: Auto commit for Debian build --- diff --git a/views.lisp b/views.lisp index 6c1cb25..8f0f9b8 100644 --- a/views.lisp +++ b/views.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: views.lisp,v 1.24 2003/03/26 21:01:27 kevin Exp $ +;;;; $Id: views.lisp,v 1.25 2003/03/26 21:03:22 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -101,7 +101,9 @@ (aif (find category (views obj-class) :key #'category) it (let ((view - (make-instance 'object-view :object-class-name (class-name obj-class) + (make-instance 'object-view + :object-class-name (class-name obj-class) + :object-class obj-class :category category :slots slots))) (push view (views obj-class)) @@ -147,7 +149,7 @@ (defmethod initialize-instance :after ((view object-view) &rest initargs &key &allow-other-keys) - (initialize-view (find-class (object-class-name view)) view)) + (initialize-view (object-class view) view)) (defun initialize-view (obj-cl view) "Calculate all view slots for a hyperobject class"