# HG changeset patch # User martin # Date 1076333181 -3600 # Node ID 300261fabf7d61b84127f41198a19363d7ec0bed # Parent 565021ad7e345cbf5292dc8698212342dae43f31 Bugfix: Menu actions shall be generated into same category. diff -r 565021ad7e34 -r 300261fabf7d MenuEditor.st --- a/MenuEditor.st Mon Feb 09 12:31:49 2004 +0100 +++ b/MenuEditor.st Mon Feb 09 14:26:21 2004 +0100 @@ -2361,14 +2361,14 @@ self collectActionSelectors do:[:aSelector| self createActionMethodFor:aSelector in:cls - category:'menu - actions' + category:CodeGeneratorTool categoryForMenuActionsMethods redefine:redefineAspectMethods. ]. self collectAspectSelectors do:[:anAspect| self createAspectMethodFor:anAspect in:cls - category:'menu - aspects' + category:CodeGeneratorTool categoryForMenuActionsMethods redefine:redefineAspectMethods ]. ! ! diff -r 565021ad7e34 -r 300261fabf7d UIPainterView.st --- a/UIPainterView.st Mon Feb 09 12:31:49 2004 +0100 +++ b/UIPainterView.st Mon Feb 09 14:26:21 2004 +0100 @@ -1139,7 +1139,7 @@ alreadyInSuperclass := targetClass superclass canUnderstand:selector. - code := '!!' , targetClass name , ' methodsFor:''menu actions''!!\\'. + code := '!!' , targetClass name , ' methodsFor:''' , CodeGeneratorTool categoryForMenuActionsMethods , '''!!\\'. selector = 'openAboutThisApplication' ifTrue:[ code := code ,