[Pharo-project] AutoStart startUp:
Hi, I'm synchronizing changes of the PharoKernel with Pharo 1.2 and I see that in the method AutoStart class>>startUp: the temp variable startupParameters is not initialized. Lukas deleted the line startupParameters := AbstractLauncher extractParameters. it should placed back as: startupParameters := SmalltalkImage current extractParameters. Cheers, -- Pavel
there's another issue in this method. If WorldState is not present, no launcher is called. It should be: (ws := Smalltalk at: #WorldState ifAbsent: [ nil ]) ifNotNil: [ launchers do: [:launcher | ws addDeferredUIMessage: [launcher startUp]] ] ifNil: [ launchers do: [:launcher | launcher startUp]]. -- Pavel On Tue, Jun 15, 2010 at 10:21 AM, Pavel Krivanek <pavel.krivanek@gmail.com> wrote:
Hi,
I'm synchronizing changes of the PharoKernel with Pharo 1.2 and I see that in the method AutoStart class>>startUp: the temp variable startupParameters is not initialized. Lukas deleted the line
startupParameters := AbstractLauncher extractParameters.
it should placed back as:
startupParameters := SmalltalkImage current extractParameters.
Cheers, -- Pavel
Thanks pavel Do you have a cs? Stef On Jun 15, 2010, at 10:21 AM, Pavel Krivanek wrote:
Hi,
I'm synchronizing changes of the PharoKernel with Pharo 1.2 and I see that in the method AutoStart class>>startUp: the temp variable startupParameters is not initialized. Lukas deleted the line
startupParameters := AbstractLauncher extractParameters.
it should placed back as:
startupParameters := SmalltalkImage current extractParameters.
Cheers, -- Pavel
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Hi Stef, I atteched the changeset to the issue. Cheers, -- Pavel On Tue, Jun 15, 2010 at 12:09 PM, Stéphane Ducasse <stephane.ducasse@inria.fr> wrote:
http://code.google.com/p/pharo/issues/detail?id=2556
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
participants (2)
-
Pavel Krivanek -
Stéphane Ducasse