UserPreferences.st
changeset 7037 0771e159ad40
parent 7030 52b794e6abee
child 7047 7236b784afa4
equal deleted inserted replaced
7036:a69bf9b169e7 7037:0771e159ad40
   411       nextPutLine:'Display notNil ifTrue:[';
   411       nextPutLine:'Display notNil ifTrue:[';
   412       nextPutLine:' Display activateOnClick: ' , ((screen activateOnClick:nil) storeString) , '.';
   412       nextPutLine:' Display activateOnClick: ' , ((screen activateOnClick:nil) storeString) , '.';
   413       nextPutLine:'].';
   413       nextPutLine:'].';
   414       nextPutLine:'MenuView showAcceleratorKeys: ' , (MenuView showAcceleratorKeys storeString) , '.';
   414       nextPutLine:'MenuView showAcceleratorKeys: ' , (MenuView showAcceleratorKeys storeString) , '.';
   415       nextPutLine:'Class tryLocalSourceFirst: ' , (Class tryLocalSourceFirst storeString) , '.'.
   415       nextPutLine:'Class tryLocalSourceFirst: ' , (Class tryLocalSourceFirst storeString) , '.'.
   416     (Exception emergencyHandler == AbstractLauncherApplication notifyingEmergencyHandler) ifTrue:[
   416     (NoHandlerError emergencyHandler == AbstractLauncherApplication notifyingEmergencyHandler) ifTrue:[
   417         s nextPutLine:'Exception emergencyHandler:(AbstractLauncherApplication notifyingEmergencyHandler).'.
   417         s nextPutLine:'NoHandlerError emergencyHandler:(AbstractLauncherApplication notifyingEmergencyHandler).'.
   418     ].
   418     ].
   419     Processor isTimeSlicing ifTrue:[
   419     Processor isTimeSlicing ifTrue:[
   420         s nextPutLine:'Processor startTimeSlicing.'.
   420         s nextPutLine:'Processor startTimeSlicing.'.
   421         s nextPutLine:('Processor supportDynamicPriorities:' , (Processor supportDynamicPriorities ? false) storeString , '.').
   421         s nextPutLine:('Processor supportDynamicPriorities:' , (Processor supportDynamicPriorities ? false) storeString , '.').
   422     ] ifFalse:[
   422     ] ifFalse:[
  2170 ! !
  2170 ! !
  2171 
  2171 
  2172 !UserPreferences class methodsFor:'documentation'!
  2172 !UserPreferences class methodsFor:'documentation'!
  2173 
  2173 
  2174 version
  2174 version
  2175     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.99 2003-02-13 16:45:45 cg Exp $'
  2175     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.100 2003-02-18 13:40:13 stefan Exp $'
  2176 ! !
  2176 ! !