checkin from browser
authorClaus Gittinger <cg@exept.de>
Wed, 02 Apr 2003 10:45:26 +0200
changeset 2722 57c08cdf3c6a
parent 2721 c94666d11e8f
child 2723 8c910a099160
checkin from browser
TextView.st
--- a/TextView.st	Sun Mar 30 15:07:32 2003 +0200
+++ b/TextView.st	Wed Apr 02 10:45:26 2003 +0200
@@ -1834,12 +1834,14 @@
         searchBox accepted ifTrue:[ searchAction value:fwd ].
     ] ifFalse:[
         (bldr componentAt:#nextButton) isReturnButton:false.
-        (bldr componentAt:#cancelButton) label:(resources string:'Close').
-        (bldr componentAt:#cancelButton) action:[searchBox closeRequest].
+        (bldr componentAt:#cancelButton) 
+                label:(resources string:'Close');
+                action:[searchBox closeRequest].
         "/ searchBox masterApplication:self application.
         self topView beMaster.
-        searchBox window beSlave.
-        searchBox window openInGroup:(self windowGroup).
+        searchBox window 
+                beSlave;
+                openInGroup:(self windowGroup).
         "/ searchBox window open.
     ]
 ! !
@@ -3618,7 +3620,7 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.195 2003-03-30 13:07:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.196 2003-04-02 08:45:26 cg Exp $'
 ! !
 
 TextView initialize!