findGuiResources... now sets the receiver, if not yet set
authorClaus Gittinger <cg@exept.de>
Mon, 19 Nov 2001 16:29:07 +0100
changeset 1533 b6b2f8ab4e4a
parent 1532 6c5eea3daf64
child 1534 292c277fcf6a
findGuiResources... now sets the receiver, if not yet set
WindowBuilder.st
--- a/WindowBuilder.st	Mon Nov 19 16:17:19 2001 +0100
+++ b/WindowBuilder.st	Mon Nov 19 16:29:07 2001 +0100
@@ -954,7 +954,7 @@
         ((menu := menu value) notNil and:[application notNil]) ifTrue:[
             menu isArray ifTrue:[
                 menu := Menu new fromLiteralArrayEncoding:menu.
-                menu receiver:application.
+                "/ menu receiver:application. -- now done in findGuiResources ...
             ].
             menu findGuiResourcesIn:application
         ]
@@ -1267,5 +1267,5 @@
 !WindowBuilder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.94 2001-10-11 16:32:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/WindowBuilder.st,v 1.95 2001-11-19 15:29:07 cg Exp $'
 ! !