The Trunk: System-mt.884.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-mt.884.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.884.mcz

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

Name: System-mt.884
Author: mt
Time: 13 August 2016, 10:21:45.116894 am
UUID: 01c8c7a5-5baa-fa4c-99a4-6ae20e0b838b
Ancestors: System-mt.883

Reverts a change that generated preference accessors into an *autogenerated category. This, however, will recategorize several accessors from 'standard queries' into that 'Autogenerated' package, occasionally. We do not want to risk losing getters needed by existing applications.

=============== Diff against System-mt.883 ===============

Item was changed:
  ----- Method: Preferences class>>compileAccessorForPreference: (in category 'private') -----
  compileAccessorForPreference: aPreference
  "Compile an accessor method for the given preference"
 
  self class
  compileSilently: (
  '{1} ^self valueOfFlag: {2} ifAbsent: [ {3} ]'
  format: {
  aPreference name asString.
  aPreference name asSymbol printString.
+ aPreference defaultValue storeString })
+ classified: 'standard queries'!
- aPreference defaultValue storeString })
- classified: '*autogenerated-standard queries'!