# HG changeset patch # User Claus Gittinger # Date 1172782131 -3600 # Node ID 9f592c9a86db048ed07fabedaa08ffff544970f4 # Parent 22b90cc3328f9ff41fd6662e7d5bf3e9802146f3 code cleanup diff -r 22b90cc3328f -r 9f592c9a86db 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 $' ! !