AbstractSettingsApplication.st
branchjv
changeset 13182 bc686a7cc736
parent 13178 c9bf900fe729
parent 13163 860d3422b887
child 13250 0decde6c459d
--- a/AbstractSettingsApplication.st	Mon Jul 15 13:16:46 2013 +0100
+++ b/AbstractSettingsApplication.st	Tue Jul 16 17:18:09 2013 +0100
@@ -1050,7 +1050,7 @@
     ^ #(
 
 #arraysAreImmutable
-'Array literals are readonly objects, which cannot be modified.
+'Array and ByteArray literals are readonly objects, which cannot be modified.
 Prevents constant arrays as returned from a method to be modified elsewhere by accident'
 
 #fullDebugInfo
@@ -1133,101 +1133,7 @@
 )
 !
 
-helpSpec
-    "This resource specification was automatically generated
-     by the UIHelpTool of ST/X."
-
-    "Do not manually edit this!! If it is corrupted,
-     the UIHelpTool may not be able to read the specification."
-
-    "
-     UIHelpTool openOnClass:AbstractSettingsApplication::ByteCodeCompilerSettingsAppl    
-    "
-
-    <resource: #help>
-
-    ^ super helpSpec addPairsFrom:#(
-
-#allowAssignmentToPoolVariable
-''
-
-#allowDollarInIdentifier
-''
-
-#allowDolphinExtensions
-''
-
-#allowEmptyStatements
-''
-
-#allowExtendedBinarySelectors
-''
-
-#allowFixedPointLiterals
-''
-
-#allowOldStyleAssignment
-''
-
-#allowQualifiedNames
-''
-
-#allowReservedWordsAsSelectors
-''
-
-#allowSqueakExtensions
-''
-
-#allowUnderscoreInIdentifier
-''
-
-#allowVisualAgeESSymbolLiterals
-''
-
-#allowVisualAgePrimitives
-''
-
-#arraysAreImmutable
-''
-
-#fullDebugInfo
-''
-
-#stringsAreImmutable
-''
-
-#warnAboutPossibleSTCCompilationProblems
-''
-
-#warnAboutPossiblyUnimplementedSelectors
-''
-
-#warnAboutReferenceToPrivateClass
-''
-
-#warnDollarInIdentifier
-''
-
-#warnOldStyleAssignment
-''
-
-#warnPlausibilityChecks
-''
-
-#warnPossibleIncompatibilities
-''
-
-#warnSTXSpecials
-''
-
-#warnUnderscoreInIdentifier
-''
-
-#warnings
-''
-
-)
-! !
+ !
 
 !AbstractSettingsApplication::ByteCodeCompilerSettingsAppl class methodsFor:'image specs'!
 
@@ -3795,7 +3701,7 @@
 'Press CTRL to drag the selected text into another view'
 
 #tabStops4
-'Controls if tab stops are multiples of 4 or 8 while editing.\Notice that this only affects the cursor positioning while editing, and that tabs are never part of the text internally.\The external (file-) representation always uses tab stops in multiples of 8.\Thus, when saving, one leading tab is generated for every 8 leading spaces,\and when reading a file, each tab is replaced by 8 spaces'
+'Controls if tab stops are multiples of 4 or 8 while editing.\Notice that this only affects the cursor positioning while editing, and that tabs are never part of the text internally.\The external (file-) representation always uses tab stops in multiples of 8.\Thus, when saving, one leading tab is generated for every 8 leading spaces,\and when reading a file, each tab is replaced by 8 spaces.\For ST/X, using multiple of 4 is recommended (the whole system was written in this style)'
 
 #useNewCodeView2
 'Use the new advanced CodeView2, which supports line numbers, advanced variable and selector highlighting,\and other useful programmer features'
@@ -5468,15 +5374,14 @@
     Class catchClassRedefinitions:self catchClassRedefs value.
     Class catchMethodRedefinitions:self catchMethodRedefs value.
     HistoryManager notNil ifTrue:[
-	HistoryManager fullHistoryUpdate:self fullHistoryUpdate value.
-	self historyLines value ifTrue:[
-	    HistoryManager activate
-	] ifFalse:[
-	    HistoryManager deactivate
-	].
-	nm := (self userNameInHistoryHolder value ? '') withoutSeparators.
-	nm isEmpty ifTrue:[ nm := nil ].
-	UserPreferences current historyManagerSignature:nm.
+        HistoryManager fullHistoryUpdate:self fullHistoryUpdate value.
+        self historyLines value ifTrue:[
+            HistoryManager activate
+        ] ifFalse:[
+            HistoryManager deactivate
+        ].
+        nm := (self userNameInHistoryHolder value ? '') withoutSeparators asNilIfEmpty.
+        UserPreferences current historyManagerSignature:nm.
     ].
     Smalltalk loadBinaries:self loadBinaries value.
 
@@ -18803,11 +18708,11 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.478 2013-06-27 11:42:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.481 2013-07-13 20:40:13 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.478 2013-06-27 11:42:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.481 2013-07-13 20:40:13 cg Exp $'
 !
 
 version_HG