#REFACTORING
authorClaus Gittinger <cg@exept.de>
Thu, 11 Feb 2016 14:48:02 +0100
changeset 3547 f3221c6ff930
parent 3546 4d43beec43de
child 3548 0053d65044b9
#REFACTORING class: ToolApplicationModel changed: #aboutThisApplicationText (send #allBold instead of #asBoldText) #xxopenAboutThisApplication (send #allBold instead of #asBoldText)
ToolApplicationModel.st
--- a/ToolApplicationModel.st	Thu Feb 11 14:47:41 2016 +0100
+++ b/ToolApplicationModel.st	Thu Feb 11 14:48:02 2016 +0100
@@ -1195,7 +1195,7 @@
     ].
 
     msg := '\The application\\' withCRs
-        , myClass name asBoldText, rev
+        , myClass name allBold, rev
         , '\\has been designed and implemented by: \' withCRs
         , ((self class authorLinesForAboutBox collect:[:l | '    ' , l]) asStringWith:$\) withCRs
         , '\\' withCRs.
@@ -1302,7 +1302,7 @@
     (clsRev := myClass revision) notNil ifTrue: [rev := '  (rev: ', clsRev printString, ')'].
 
     msg := '\The application\\' withCRs
-        , myClass name asBoldText, rev
+        , myClass name allBold, rev
         , '\\has been designed and implemented by: \' withCRs
         , ((self class authorLinesForAboutBox collect:[:l | '- ' , l]) asStringWith:$\) withCRs
         , '\\' withCRs.