The Trunk: Monticello-ul.359.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-ul.359.mcz

commits-2
Levente Uzonyi uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-ul.359.mcz

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

Name: Monticello-ul.359
Author: ul
Time: 12 January 2010, 1:04:46.409 am
UUID: 17240da3-f60f-8a4a-b2bd-261255792c30
Ancestors: Monticello-ul.358

A nice little fix from Pharo, for an annoying bug. Fixed by Lukas Renggli. (http://code.google.com/p/pharo/issues/detail?id=1774)

=============== Diff against Monticello-ul.358 ===============

Item was changed:
  ----- Method: MCWorkingCopyBrowser>>editRepository (in category 'actions') -----
  editRepository
  | newRepo |
 
  newRepo := self repository openAndEditTemplateCopy.
  newRepo ifNotNil: [
  newRepo class = self repository class
+ ifTrue: [
+ self repository copyFrom: newRepo.
+ self changed: #repositoryList ]
- ifTrue: [self repository copyFrom: newRepo]
  ifFalse: [self inform: 'Must not change repository type!!']]
  !