#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Thu, 12 Jan 2017 15:02:21 +0100
changeset 21235 4859f3fef7ca
parent 21234 5484b13cded1
child 21236 df609ea04274
#REFACTORING by cg class: UserPreferences comment/format in: #historyManagerEnabled #historyManagerEnabled:
UserPreferences.st
--- a/UserPreferences.st	Thu Jan 12 15:01:03 2017 +0100
+++ b/UserPreferences.st	Thu Jan 12 15:02:21 2017 +0100
@@ -4072,15 +4072,26 @@
 !
 
 historyManagerEnabled
+    "automatically add history line comments to accepted methods"
+
     ^self 
         at: #'history-manager.enabled'
         ifAbsent: true 
 !
 
 historyManagerEnabled:aBoolean
+    "automatically add history line comments to accepted methods"
+
     ^self 
         at: #'history-manager.enabled'
         put: aBoolean 
+
+
+    "
+     UserPreferences current historyManagerEnabled
+     UserPreferences current historyManagerEnabled:true
+     UserPreferences current historyManagerEnabled:false
+    "
 ! !
 
 !UserPreferences methodsFor:'accessing-prefs-code'!