WinBuilder.st
changeset 598 52fee9e520b8
parent 595 15d80dd3d974
child 600 885bd39df8df
--- a/WinBuilder.st	Mon Jun 16 11:32:57 1997 +0200
+++ b/WinBuilder.st	Mon Jun 16 11:41:35 1997 +0200
@@ -314,14 +314,12 @@
 
     aSelector isSymbol ifTrue:[
         Object messageNotUnderstoodSignal handle:[:ex |
-            Transcript showCR:'not understood: ' , aSelector.
         ] do:[
             (res := self perform:aSelector) notNil ifTrue:[^ res]
         ].
 
         application notNil ifTrue:[
             Object messageNotUnderstoodSignal handle:[:ex |
-                Transcript showCR:'not understood: ' , aSelector.
             ] do:[
                 (res := application perform:aSelector) notNil ifTrue:[^ res]
             ]
@@ -338,14 +336,12 @@
 
     aSelector isSymbol ifTrue:[
         Object messageNotUnderstoodSignal handle:[:ex |
-            Transcript showCR:'not understood: ' , aSelector.
         ] do:[
             (res := self perform:aSelector with:anArgument) notNil ifTrue:[^ res]
         ].
 
         application notNil ifTrue:[
             Object messageNotUnderstoodSignal handle:[:ex |
-                Transcript showCR:'not understood: ' , aSelector.
             ] do:[
                 (res := application perform:aSelector with:anArgument) notNil ifTrue:[^ res]
             ]
@@ -692,5 +688,5 @@
 !WindowBuilder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/Attic/WinBuilder.st,v 1.37 1997-06-15 10:10:54 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/Attic/WinBuilder.st,v 1.38 1997-06-16 09:41:35 ca Exp $'
 ! !