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

commits at source.squeak.org commits at source.squeak.org
Sun Feb 14 17:26:31 UTC 2010


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

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

Name: Monticello-cmm.364
Author: cmm
Time: 14 February 2010, 10:02:01.155 am
UUID: 6cfead80-9e6e-4234-9740-2443a1052205
Ancestors: Monticello-nice.363

- Tools enhancement:  before opening a new window on a Model, first check whether an existing window on the desktop can fulfill the role and, if so, bring it to the top.

=============== Diff against Monticello-nice.363 ===============

Item was added:
+ ----- Method: MCRepositoryInspector>>repository (in category 'private') -----
+ repository
+ 	^ repository!

Item was added:
+ ----- Method: MCWorkingCopyBrowser>>representsSameBrowseeAs: (in category 'morphic ui') -----
+ representsSameBrowseeAs: anotherModel
+ 	^ self class = anotherModel class!

Item was added:
+ ----- Method: MCVersionInspector>>repository (in category 'morphic ui') -----
+ repository
+ 	self subclassResponsibility !

Item was added:
+ ----- Method: MCVersionInspector>>representsSameBrowseeAs: (in category 'morphic ui') -----
+ representsSameBrowseeAs: anotherModel 
+ 	^ self class = anotherModel class
+ 	and: [ self repository = anotherModel repository ]!

Item was added:
+ ----- Method: MCSaveVersionDialog>>representsSameBrowseeAs: (in category 'as yet unclassified') -----
+ representsSameBrowseeAs: anotherModel 
+ 	^ self class = anotherModel class
+ 	and: [ self versionName = anotherModel versionName ]!

Item was added:
+ ----- Method: MCFileRepositoryInspector>>repository (in category 'private') -----
+ repository
+ 	^ repository!

Item was added:
+ ----- Method: MCTool>>postAcceptBrowseFor: (in category 'morphic ui') -----
+ postAcceptBrowseFor: aModel
+ 	"Nothing to do."!

Item was added:
+ ----- Method: MCTool>>representsSameBrowseeAs: (in category 'morphic ui') -----
+ representsSameBrowseeAs: anotherModel 
+ 	^ false!




More information about the Squeak-dev mailing list