class: FileBrowserV2
authorStefan Vogel <sv@exept.de>
Thu, 13 Mar 2014 10:48:42 +0100
changeset 14134 4064e66e421f
parent 14133 c49b796dca2b
child 14135 836da67ba7bb
class: FileBrowserV2 changed: #menuFileHistory
FileBrowserV2.st
--- a/FileBrowserV2.st	Thu Mar 13 00:01:26 2014 +0100
+++ b/FileBrowserV2.st	Thu Mar 13 10:48:42 2014 +0100
@@ -2168,15 +2168,13 @@
 !FileBrowserV2 methodsFor:'menu accessing'!
 
 menuFileHistory
-    "initialize the file history menu
-    "
+    "initialize the file history menu"
+
     <resource: #programMenu >
 
     |menu hist text removeItem removeCol|
 
-    menu := Menu new.
-    menu findGuiResourcesIn:self.
-    menu receiver:self.
+    menu := Menu new receiver:self.
 
     hist := self fileHistory.
     hist isEmpty ifTrue:[^ nil].
@@ -2396,11 +2394,11 @@
 !FileBrowserV2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.219 2014-02-26 15:11:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.220 2014-03-13 09:48:42 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.219 2014-02-26 15:11:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.220 2014-03-13 09:48:42 stefan Exp $'
 ! !