The Trunk: Morphic-kb.237.mcz

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

The Trunk: Morphic-kb.237.mcz

commits-2
Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kb.237.mcz

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

Name: Morphic-kb.237
Author: kb
Time: 19 November 2009, 12:25:36 pm
UUID: 7cd11ef9-4e7d-b547-882e-432a2cd8dafa
Ancestors: Morphic-kb.236

 - changed the showWorldMainDockingBar preference to always use the current project's preference.
 - added to the postscript to remove the preference from Preferences

=============== Diff against Morphic-kb.235 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar class>>showWorldMainDockingBar: (in category 'preferences') -----
  showWorldMainDockingBar: aBoolean
 
+ Project current showWorldMainDockingBar: aBoolean!
- ShowWorldMainDockingBar := aBoolean.
- Project current showWorldMainDockingBar: ShowWorldMainDockingBar!

Item was changed:
  Object subclass: #TheWorldMainDockingBar
  instanceVariableNames: 'icons'
+ classVariableNames: 'Instance TS'
- classVariableNames: 'Instance ShowWorldMainDockingBar TS'
  poolDictionaries: ''
  category: 'Morphic-Kernel'!

Item was changed:
  ----- Method: MorphicProject>>showWorldMainDockingBar (in category 'docking bars support') -----
  showWorldMainDockingBar
 
  ^ self projectPreferenceFlagDictionary
  at: #showWorldMainDockingBar
+ ifAbsent: [ false ]!
- ifAbsent: [Preferences showWorldMainDockingBar]!

Item was changed:
  ----- Method: TheWorldMainDockingBar class>>showWorldMainDockingBar (in category 'preferences') -----
  showWorldMainDockingBar
 
  <preference: 'Show world main docking bar'
  category: 'docking bars'
  description: 'Whether world''s main docking bar should be shown or not.'
  type: #Boolean>
+ ^Project current showWorldMainDockingBar!
- ^ShowWorldMainDockingBar == true!

Item was changed: