[squeak-dev] The Trunk: EToys-dtl.101.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jun 4 11:04:37 UTC 2013


David T. Lewis uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-dtl.101.mcz

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

Name: EToys-dtl.101
Author: dtl
Time: 4 June 2013, 7:03:29.05 am
UUID: 7ad9d8c8-4ba4-4083-9467-ad3254263d42
Ancestors: EToys-fbs.100

Use Project>>openProject: instead of direct reference to ST80 ProjectView for entering a project from MVC

=============== Diff against EToys-fbs.100 ===============

Item was changed:
  ----- Method: ProjectLoading class>>makeExistingView:project:projectsToBeDeleted: (in category '*etoys') -----
  makeExistingView: existingView project: proj projectsToBeDeleted: projectsToBeDeleted
  		existingView ifNil: [
  			Smalltalk isMorphic ifTrue: [
  				proj createViewIfAppropriate.
  			] ifFalse: [
  				ChangeSorter allChangeSets add: proj changeSet.
+ 				Project current openProject:  proj.
- 				ProjectView openAndEnter: proj.
  				"Note: in MVC we get no further than the above"
  			].
  		] ifNotNil: [
  			(existingView project isKindOf: DiskProxy) ifFalse: [
  				existingView project changeSet name: 
  ChangeSet defaultName.
  				projectsToBeDeleted add: existingView project.
  			].
  			(existingView owner isSystemWindow) ifTrue: [
  				existingView owner model: proj
  			].
  			existingView project: proj.
  		].
  !



More information about the Squeak-dev mailing list