class: UserPreferences
authorClaus Gittinger <cg@exept.de>
Tue, 08 Jul 2014 23:16:24 +0200
changeset 16698 6cc3755c970a
parent 16697 c462faf821b7
child 16699 eafc8ff6f15a
class: UserPreferences changed: #colorForPseudoProtocolsInMethodListInBrowser (send #gray instead of #grey, send #gray: instead of #grey:) grey -> gray
UserPreferences.st
--- a/UserPreferences.st	Tue Jul 08 22:48:38 2014 +0200
+++ b/UserPreferences.st	Tue Jul 08 23:16:24 2014 +0200
@@ -630,6 +630,7 @@
         put: aFilename.
 ! !
 
+
 !UserPreferences methodsFor:'accessing-locale'!
 
 dateInputFormat
@@ -2395,17 +2396,17 @@
             bg := View defaultBackgroundColor.
         ].
         bg isNil ifTrue:[
-            ^ Color grey
+            ^ Color gray
         ].
     ].
 
-    (Color grey brightness - (bg brightness)) abs < 0.3 ifTrue:[
+    (Color gray brightness - (bg brightness)) abs < 0.3 ifTrue:[
         (bg brightness) > 0.7 ifTrue:[
-            ^ Color grey:20.
+            ^ Color gray:20.
         ].
-        ^ Color grey:80.
+        ^ Color gray:80.
     ].
-    ^ Color grey
+    ^ Color gray
 
     "Created: / 07-09-2011 / 09:51:12 / cg"
 !
@@ -4953,11 +4954,11 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.381 2014-07-04 10:26:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.382 2014-07-08 21:16:24 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.381 2014-07-04 10:26:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.382 2014-07-08 21:16:24 cg Exp $'
 !
 
 version_SVN