[mcclim-devel] Re: [mcclim-cvs] CVS update: mcclim/Apps/Inspector/clouseau.asd mcclim/Apps/Inspector/inspector.lisp mcclim/Apps/Inspector/inspector.asd
tmoore@common-lisp.net (Timothy Moore) writes:
Update of /project/mcclim/cvsroot/mcclim/Apps/Inspector [...] Log Message: Changed name of inspector system and package to clouseau in order to avoid conflicts with system inspectors.
The sample form in Apps/Inspector/INSTALL should accordingly be changed to: (clouseau::inspector (clim:make-application-frame clouseau::inspector :obj 20)) Paolo -- Lisp Propulsion Laboratory log - http://www.paoloamoroso.it/log
On Wed, 2005-02-02 at 14:13 +0100, Paolo Amoroso wrote:
The sample form in Apps/Inspector/INSTALL should accordingly be changed to:
(clouseau::inspector (clim:make-application-frame clouseau::inspector :obj 20))
How about either: (clouseau::inspector 20) or (clim:make-application-frame 'clouseau::inspector :obj 20) ? -- Janis Dzerins If million people say a stupid thing, it's still a stupid thing.
Janis Dzerins writes:
On Wed, 2005-02-02 at 14:13 +0100, Paolo Amoroso wrote:
The sample form in Apps/Inspector/INSTALL should accordingly be changed to:
(clouseau::inspector (clim:make-application-frame clouseau::inspector :obj 20))
How about either: (clouseau::inspector 20)
That would inspect the object 20 as opposed to an inspector frame that inspects the object 20.
or (clim:make-application-frame 'clouseau::inspector :obj 20)
That creates an instance of an inspector frame that inspects the object 20, but does not run the application. Perhaps my example is confusing because the call to clouseau::inspector runs the inspector and the call to make-application-frame just creates something for the inspector to inspect, and that something happens to be an inspector applicataion-frame. -- Robert Strandh --------------------------------------------------------------------- Greenspun's Tenth Rule of Programming: any sufficiently complicated C or Fortran program contains an ad hoc informally-specified bug-ridden slow implementation of half of Common Lisp. ---------------------------------------------------------------------
Robert Strandh <strandh@labri.fr> writes:
Perhaps my example is confusing because the call to clouseau::inspector runs the inspector and the call to make-application-frame just creates something for the inspector to inspect, and that something happens to be an inspector applicataion-frame.
He he he, the devious self-referentiality of Lispers :) Paolo -- Lisp Propulsion Laboratory log - http://www.paoloamoroso.it/log
participants (3)
-
Janis Dzerins
-
Paolo Amoroso
-
Robert Strandh