extensions.st
changeset 11989 16928a5c9185
parent 11973 f814a03a171f
child 12051 1d4a61fe3f0c
--- a/extensions.st	Thu Nov 01 15:20:15 2012 +0100
+++ b/extensions.st	Thu Nov 01 15:23:27 2012 +0100
@@ -1496,7 +1496,6 @@
 !UserPreferences methodsFor:'accessing-prefs-code view'!
 
 codeView2ShowAcceptCancel
-
     ^self at:#codeView2ShowAcceptCancel ifAbsent: false
 
     "
@@ -1511,7 +1510,6 @@
 !UserPreferences methodsFor:'accessing-prefs-code view'!
 
 codeView2ShowAcceptCancel: aBoolean
-
     ^self at:#codeView2ShowAcceptCancel put: aBoolean
 
     "
@@ -1528,7 +1526,7 @@
 showBookmarkBar
     "experimental."
 
-    ^ self at:#showBookmarkBar ifAbsent: true.
+    ^ self at:#showBookmarkBar ifAbsent: false "true".
 
     "
      UserPreferences current showBookmarkBar
@@ -1846,7 +1844,7 @@
 !UserPreferences methodsFor:'accessing-prefs-code view'!
 
 useCodeView2InTools
-    ^self at:#useCodeView2InTools ifAbsent:false
+    ^self at:#useCodeView2InTools ifAbsent:true "false"
 
     "
      UserPreferences current useCodeView2InTools 
@@ -1963,5 +1961,5 @@
 !stx_libtool class methodsFor:'documentation'!
 
 extensionsVersion_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/extensions.st,v 1.89 2012-10-31 14:57:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/extensions.st,v 1.90 2012-11-01 14:23:27 cg Exp $'
 ! !
\ No newline at end of file