The Trunk: Chronology-Core-mt.62.mcz

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

The Trunk: Chronology-Core-mt.62.mcz

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

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

Name: Chronology-Core-mt.62
Author: mt
Time: 15 October 2020, 2:25:49.333368 pm
UUID: c9779820-dc98-e54d-81b9-b8a19c29ce59
Ancestors: Chronology-Core-eem.61

Complements System-mt.1180. See http://forum.world.st/Proposal-Resetting-pragma-preferences-via-nil-or-reset-message-td5123490.html

=============== Diff against Chronology-Core-eem.61 ===============

Item was changed:
  ----- Method: DateAndTime class>>automaticTimezone: (in category 'preferences') -----
+ automaticTimezone: aBooleanOrNil
- automaticTimezone: aBoolean
  "Accessor for the system-wide preference.
  Note this gets disabled in localTimeZone: to make that override stick"
 
+ AutomaticTimezone := aBooleanOrNil.
+ self automaticTimezone ifTrue: [self now]. "fetch timezone immediately"!
- AutomaticTimezone := aBoolean.
- aBoolean ifTrue: [self now]. "fetch timezone immediately"!