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
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 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 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