EnterBox2.st
changeset 5892 a8ff6abd62ab
parent 4688 eec25585c34b
--- a/EnterBox2.st	Thu Oct 06 22:28:42 2016 +0200
+++ b/EnterBox2.st	Thu Oct 06 23:14:32 2016 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libwidg' }"
 
+"{ NameSpace: Smalltalk }"
+
 EnterBox subclass:#EnterBox2
 	instanceVariableNames:'okButton2 okAction2'
 	classVariableNames:''
@@ -40,7 +42,7 @@
         originally, ST/X had separate classes for the various entry methods;
         there were YesNoBox, EnterBox, InfoBox and so on.
         In the meantime, the DialogBox class (and therefore its alias: Dialog)
-        is going to duplicate most funcionality found in these classes.
+        is going to duplicate most functionality found in these classes.
 
         In the future, those existing subclasses' functionality is going to
         be moved fully into Dialog, and the subclasses will be replaced by dummy
@@ -67,14 +69,14 @@
 !EnterBox2 class methodsFor:'instance creation'!
 
 title:titleString okText1:text1 okText2:text2 abortText:abortText
-		  action1:block1 action2:block2
+                  action1:block1 action2:block2
     "create and return a new EnterBox-with-2 buttons
      and define its text, button-labels and actions"
 
-    ^ (super title:titleString 
-	    okText:text1 
-	 abortText:abortText
-	    action:block1) okText2:text2 action2:block2
+    ^ (super title:titleString
+            okText:text1
+         abortText:abortText
+            action:block1) okText2:text2 action2:block2
 ! !
 
 !EnterBox2 methodsFor:'accessing'!
@@ -152,6 +154,6 @@
 !EnterBox2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/EnterBox2.st,v 1.27 2013-08-29 10:28:00 cg Exp $'
+    ^ '$Header$'
 ! !