The Trunk: System-fbs.624.mcz

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

The Trunk: System-fbs.624.mcz

commits-2
Frank Shearar uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-fbs.624.mcz

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

Name: System-fbs.624
Author: fbs
Time: 25 November 2013, 10:26:20.078 pm
UUID: afa852ba-da57-3a4e-b7eb-24a2f65fb402
Ancestors: System-fbs.623

Use ScrapBook default, not Utilities' deprecated scrapsbook API.

=============== Diff against System-fbs.623 ===============

Item was changed:
  ----- Method: Project>>updateLocaleDependents (in category 'language') -----
  updateLocaleDependents
  "Set the project's natural language as indicated"
 
  ActiveWorld allTileScriptingElements do: [:viewerOrScriptor |
  viewerOrScriptor localeChanged].
 
  Flaps disableGlobalFlaps: false.
  Preferences eToyFriendly
  ifTrue: [
  Flaps addAndEnableEToyFlaps.
  ActiveWorld addGlobalFlaps]
  ifFalse: [Flaps enableGlobalFlaps].
 
  (Project current isFlapIDEnabled: 'Navigator' translated)
  ifFalse: [Flaps enableDisableGlobalFlapWithID: 'Navigator' translated].
 
+ ScrapBook default emptyScrapsBook.
- Utilities emptyScrapsBook.
  MenuIcons initializeTranslations.
 
  LanguageEnvironment localeChanged.
 
  "self setFlaps.
  self setPaletteFor: aLanguageSymbol."
  !