The Trunk: Monticello-cmm.365.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-cmm.365.mcz

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

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

Name: Monticello-cmm.365
Author: cmm
Time: 14 February 2010, 10:31:54.035 am
UUID: 80887ebd-6a24-4721-ac81-e05d3bc497c1
Ancestors: Monticello-cmm.364

- Fix for new window topping feature.

=============== 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: MCFileRepositoryInspector>>representsSameBrowseeAs: (in category 'morphic ui') -----
+ representsSameBrowseeAs: anotherModel
+ ^ self class = anotherModel class
+ and: [ self repository = anotherModel repository ]!

Item was added:
+ ----- Method: MCRepositoryInspector>>representsSameBrowseeAs: (in category 'private') -----
+ 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!