FileBrowserV2.st
changeset 5630 167c807f720a
parent 5532 9b43fb7979ad
child 5659 7417f230ee11
--- a/FileBrowserV2.st	Tue Mar 02 17:28:20 2004 +0100
+++ b/FileBrowserV2.st	Tue Mar 02 17:29:07 2004 +0100
@@ -224,7 +224,12 @@
                     submenuChannel: #menuFileHistory;
                     showBusyCursorWhilePerforming:true.
 
-    NewLauncher addMenuItem:menuItem in:'menu.file' position:#( #before #fileBrowser) space:true.
+    NewLauncher 
+        addMenuItem:menuItem 
+        from:self
+        in:'menu.file' 
+        position:#( #before #fileBrowser) 
+        space:true.
 
     menuItem := MenuItem new 
                     translateLabel: true;
@@ -236,7 +241,12 @@
                     submenuChannel: #menuFileHistory;
                     showBusyCursorWhilePerforming:true.
 
-    NewLauncher addMenuItem:menuItem in:'toolbar' position:#( #before #fileBrowser) space:false.
+    NewLauncher 
+        addMenuItem:menuItem 
+        from:self
+        in:'toolbar' 
+        position:#( #before #fileBrowser) 
+        space:false.
 
     currentLauncher := NewLauncher current.
     currentLauncher notNil ifTrue:[
@@ -1698,7 +1708,7 @@
 !FileBrowserV2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.107 2004-02-18 10:22:44 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileBrowserV2.st,v 1.108 2004-03-02 16:29:07 cg Exp $'
 ! !
 
 FileBrowserV2 initialize!