#REFACTORING
authorClaus Gittinger <cg@exept.de>
Tue, 09 Feb 2016 15:20:57 +0100
changeset 16107 8e8e7dc3035d
parent 16103 f45faea2ceae
child 16108 1f9d967025d5
child 16109 4f16e24fdef2
#REFACTORING class: AbstractLauncherApplication changed: #expandSettingsList:
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Thu Feb 04 10:55:37 2016 +0100
+++ b/AbstractLauncherApplication.st	Tue Feb 09 15:20:57 2016 +0100
@@ -309,7 +309,7 @@
                 newEntry := eachEntry
             ] ifFalse:[
                 newEntry := eachEntry copy.
-                (iconCodeOrSelector startsWith:'[') ifTrue:[
+                (iconCodeOrSelector startsWith:$[) ifTrue:[
                     iconCode := iconCodeOrSelector copyFrom:(iconCodeOrSelector indexOf:$[)+1 to:(iconCodeOrSelector indexOf:$])-1.
                     iconCode := '^ [:each | ' , (iconCode copyReplaceString:'%' withString:'each') ,']'.
                     iconBlock := Parser evaluate:iconCode.