[squeak-dev] The Trunk: Tools-fbs.464.mcz

commits at source.squeak.org commits at source.squeak.org
Sat May 18 21:28:08 UTC 2013


Frank Shearar uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-fbs.464.mcz

==================== Summary ====================

Name: Tools-fbs.464
Author: fbs
Time: 18 May 2013, 10:27:22.62 pm
UUID: c10db12e-e67b-448f-8ba6-64c0f8fa0f64
Ancestors: Tools-cmm.463, Tools-fbs.431

Pull a part of StringHolder out and put it into those subclasses that actually need it.

Also, recategorise Browser >> #systemCatListKey:from:.

=============== Diff against Tools-cmm.463 ===============

Item was changed:
+ ----- Method: Browser>>systemCatListKey:from: (in category 'system category list') -----
- ----- Method: Browser>>systemCatListKey:from: (in category '*Tools') -----
  systemCatListKey: aChar from: view
  	"Respond to a Command key.  I am a model with a code pane, and I also have a listView that has a list of methods.  The view knows how to get the list and selection."
  
  	aChar == $f ifTrue: [^ self findClass].
  	aChar == $x ifTrue: [^ self removeSystemCategory].
  	aChar == $b ifTrue: [^ self recent].
  	^ self classListKey: aChar from: view!

Item was added:
+ ----- Method: DependencyBrowser>>packageListKey:from: (in category 'package list') -----
+ packageListKey: aChar from: view
+ 	aChar == $f ifTrue: [^ self findClass].
+ 	^ self classListKey: aChar from: view!

Item was added:
+ ----- Method: PackagePaneBrowser>>packageListKey:from: (in category 'package list') -----
+ packageListKey: aChar from: view
+ 	aChar == $f ifTrue: [^ self findClass].
+ 	^ self classListKey: aChar from: view!

Item was removed:
- ----- Method: StringHolder>>packageListKey:from: (in category '*Tools') -----
- packageListKey: aChar from: view
- 	"Respond to a Command key in the package pane in the PackageBrowser"
- 	aChar == $f ifTrue: [^ self findClass].
- 	^ self classListKey: aChar from: view
- !



More information about the Squeak-dev mailing list