Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.982.mcz ==================== Summary ==================== Name: System-eem.982 Author: eem Time: 12 December 2017, 9:41:56.677625 am UUID: 178a5e44-255e-4f96-b321-28c3d27f913c Ancestors: System-eem.981 Resave to eliminate inadvertent Preferences changes. I can't believe that we're still having to step around this b.s. sigh... =============== Diff against System-eem.981 =============== Item was removed: - ----- Method: Preferences class>>enablePortraitMode (in category 'standard queries') ----- - enablePortraitMode - ^ self - valueOfFlag: #enablePortraitMode - ifAbsent: [false]! Item was removed: - ----- Method: Preferences class>>enableVirtualOLPCDisplay (in category 'standard queries') ----- - enableVirtualOLPCDisplay - ^ self - valueOfFlag: #enableVirtualOLPCDisplay - ifAbsent: [false]! Item was changed: + ----- Method: Preferences class>>haloTheme (in category 'prefs - halos') ----- - ----- Method: Preferences class>>haloTheme (in category 'standard queries') ----- haloTheme ^ self valueOfFlag: #haloTheme + ifAbsent: [ #iconicHaloSpecifications ]! - ifAbsent: [#iconicHaloSpecifications]! Item was changed: ----- Method: Preferences class>>showAdvancedNavigatorButtons (in category 'standard queries') ----- showAdvancedNavigatorButtons ^ self valueOfFlag: #showAdvancedNavigatorButtons + ifAbsent: [ true ]! - ifAbsent: [false]! Item was removed: - ----- Method: Preferences class>>sugarAutoSave (in category 'standard queries') ----- - sugarAutoSave - ^ self - valueOfFlag: #sugarAutoSave - ifAbsent: [false]! Item was removed: - ----- Method: Preferences class>>vmProfilerFillInIntegral (in category 'standard queries') ----- - vmProfilerFillInIntegral - ^ self - valueOfFlag: #vmProfilerFillInIntegral - ifAbsent: [false]! |
I tried to get rid of those for 5.1, but then realized that some of these standard queries were actually used by some applications. :-) :-/ They should be in "*autogenerated" or something not to be checked-in by accident. Best, Marcel
|
|
Free forum by Nabble | Edit this page |