[squeak-dev] The Trunk: Monticello-cmm.400.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Sep 19 21:50:18 UTC 2010


Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.400.mcz

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

Name: Monticello-cmm.400
Author: cmm
Time: 19 September 2010, 4:50:02.156 pm
UUID: 815ed4bb-b5b4-420c-9639-018beb254ae9
Ancestors: Monticello-bf.399

Change "copy selector" to copy the signature of the method to the clipboard, not just the selector.

=============== Diff against Monticello-bf.399 ===============

Item was changed:
  ----- Method: MCCodeTool>>copySelector (in category 'menus') -----
  copySelector
  	"Copy the selected selector to the clipboard"
+ 	self selectedMessageName ifNotNilDo:
+ 		[ : selector | Clipboard clipboardText:
+ 			(self selectedClassOrMetaClass
+ 				ifNil: [ selector asString ]
+ 				ifNotNilDo: [ : cls | (cls >> selector) signature ]) ]!
- 
- 	| selector |
- 	(selector := self selectedMessageName) ifNotNil:
- 		[Clipboard clipboardText: selector asString]!




More information about the Squeak-dev mailing list