[FIX] VMMakerNicerFor3.4-2.cs (without open in initialize)
Ned Konz <[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.squeak.foundation |
|---|---|
| Message-ID | <[email protected]> |
On Thursday 02 January 2003 09:40 pm, Doug Way wrote: > 6. VMMakerNicerFor3.4-nk (16 December 2002) > - VMMaker-only fix, won't hurt anyone else. (Oops, wait a minute, > this changeset seems to open VMMaker as a side-effect of executing > "VMMaker initialize" in the postscript? We don't want that! Help, > Ned. :) ) Sorry... Enclosed is the same thing minus the opening in initialize. -- Ned Konz http://bike-nomad.com GPG key ID: BEEA7EFE
VMMakerNicerFor3.4-2.cs
(text/x-squeak-changeset, 1.2 KB)
'From Squeak3.4beta of ''1 December 2002'' [latest update: #5156] on 3 January 2003 at 6:41:25 am'!
"Change Set: VMMakerNicerFor3.4-nk
Date: 16 December 2002
Author: Ned Konz
VMMaker had a nasty habit of scrolling its plugin lists back to 0 upon selection.
This fixes that problem.
Also, it adds an open item for VMMakerTool in the WorldMenu.
"!
!VMMakerTool methodsFor: 'list access' stamp: 'nk 12/16/2002 08:49'!
currentAvailableModuleIndex: anInteger
allPluginsSelection _ anInteger.
self changed: #currentAvailableModuleIndex! !
!VMMakerTool methodsFor: 'list access' stamp: 'nk 12/16/2002 08:49'!
currentExternalModuleIndex: anInteger
externalPluginsSelection _ anInteger.
self changed: #currentExternalModuleIndex! !
!VMMakerTool methodsFor: 'list access' stamp: 'nk 12/16/2002 08:49'!
currentInternalModuleIndex: anInteger
internalPluginsSelection _ anInteger.
self changed: #currentInternalModuleIndex! !
!VMMakerTool class methodsFor: 'instance creation' stamp: 'nk 1/3/2003 06:41'!
initialize
(TheWorldMenu respondsTo: #registerOpenCommand:)
ifTrue: [TheWorldMenu registerOpenCommand: {'VMMaker'. {self. #openInWorld}}].! !
VMMakerTool initialize!