code cleanup
authorClaus Gittinger <cg@exept.de>
Thu, 01 Mar 2007 21:48:51 +0100
changeset 7688 9f592c9a86db
parent 7687 22b90cc3328f
child 7689 f044f38e823c
code cleanup
FindFileApplication.st
--- a/FindFileApplication.st	Thu Mar 01 21:48:49 2007 +0100
+++ b/FindFileApplication.st	Thu Mar 01 21:48:51 2007 +0100
@@ -84,8 +84,11 @@
 !FindFileApplication class methodsFor:'defaults'!
 
 tabStringFor:aApplicationType
+    "the formatString shown in a tab (language translated)"
 
-    ^ 'Find File In:'
+    ^ 'Find in %1'
+
+    "Modified: / 01-03-2007 / 21:47:54 / cg"
 ! !
 
 !FindFileApplication class methodsFor:'interface specs'!
@@ -1724,11 +1727,12 @@
 
 !FindFileApplication methodsFor:'queries'!
 
-getTabStringEnd
-
-" get the tab string from the application list on the class side "
+getTabValueString
+    "the item shown in a tab (not language translated)"
 
     ^ self fileName directory asString
+
+    "Created: / 01-03-2007 / 21:39:54 / cg"
 !
 
 hasOneFileSelected
@@ -1785,5 +1789,5 @@
 !FindFileApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.82 2007-01-10 15:20:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FindFileApplication.st,v 1.83 2007-03-01 20:48:51 cg Exp $'
 ! !