TextView.st
changeset 2944 86d6808c0b4a
parent 2941 1df9eff1ddbf
child 2945 5c4f000c7f17
--- a/TextView.st	Fri Mar 12 20:33:08 2004 +0100
+++ b/TextView.st	Fri Mar 12 23:01:45 2004 +0100
@@ -1732,15 +1732,15 @@
     |items m|
 
     items := #(
-                        ('Copy'        copySelection  Copy)
-                        ('-'           nil            )
-                        ('Search...'   search         Find)
-                        ('Goto...'     gotoLine       GotoLine)
-                        ('-'           nil            )
-                        ('Font...'     changeFont     )
-                        ('-'           nil            )
-                        ('Save As...'  save           SaveAs)
-                        ('Print'       doPrint        Print)
+                        ('Copy'          copySelection  Copy)
+                        ('-'             nil            )
+                        ('Search...'     search         Find)
+                        ('Goto Line...'  gotoLine       GotoLine)
+                        ('-'             nil            )
+                        ('Font...'       changeFont     )
+                        ('-'             nil            )
+                        ('Save As...'    save           SaveAs)
+                        ('Print'         doPrint        Print)
                 ).
 
     m := PopUpMenu itemList:items resources:resources.
@@ -3821,7 +3821,7 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.242 2004-03-12 16:35:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.243 2004-03-12 22:01:42 cg Exp $'
 ! !
 
 TextView initialize!