WindowBuilder.st
changeset 4224 8ce4f91fb3ef
parent 4097 662d9ae4818f
child 4234 abfff228a728
--- a/WindowBuilder.st	Wed Feb 13 13:06:12 2019 +0100
+++ b/WindowBuilder.st	Fri Feb 15 10:16:48 2019 +0100
@@ -812,18 +812,19 @@
      and/or stop (if StopOnError) is true"
 
     Verbose == true ifTrue:[
-	Transcript showCR:('WindowBuilder: %1 aspect: <%2>' bindWith:aString with:anAspect storeString).
-	application notNil ifTrue:[
-	     Transcript showCR:('WindowBuilder: (while building for %1)' bindWith:application class name).
-	].
+        Transcript showCR:'WindowBuilder: %1 aspect: <%2>' with:aString with:anAspect storeString.
+        application notNil ifTrue:[
+             Transcript showCR:'WindowBuilder: (while building for %1)' with:application class name.
+        ].
     ].
 
     StopOnError == true ifTrue:[
-	self halt:'aspect not found'        "/ set StopOnError to true to debug end-user apps
+        self halt:'aspect not found'        "/ set StopOnError to true to debug end-user apps
     ].
     ^ nil
 
-    "Modified: / 18.8.2000 / 14:10:59 / cg"
+    "Modified: / 18-08-2000 / 14:10:59 / cg"
+    "Modified: / 15-02-2019 / 09:53:29 / Claus Gittinger"
 ! !
 
 !WindowBuilder methodsFor:'message sending'!