Edit Rename Upload Download Back to Top

Propositions for Improvements

These pages are for concrete suggestions of small improvements that could be done in Squeak. Use the following convention: DONE when you propose a fix, INCORPORATED to say that this is incorporated into the Squeak World Tour image.

Please be concrete so that we can fix them.

SystemOrganizer>>new
   ^self error: 'you should not use new to create instances of me but defautList'

SystemOrganizer>>defaultList: aSortedCollection 
   "Answer an instance of me with initial elements from the argument, 
   aSortedCollection."

   ^ self basicNew setDefaultList: aSortedCollection

Browser>>openBrowser
	"Create and schedule a BrowserView with the default system label. The 
	view consists of five subviews, starting with the list view of system 
	categories of SystemOrganization. The initial text view part is empty."
	
	|br|
	br  := (self new openEditString: nil).
	self openBrowserView: br
			label: br defaultBrowserTitle 

Fill in


Edit Rename Upload Download Back to Top