Removed +new from use in some classes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21325 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-06-17 21:28:50 +00:00
parent f05bc9d063
commit 0471cd39bf
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-06-17 17:33 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/0Menus/GormNSMenu.m: Code cleanup.
2005-06-17 07:59 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/0Menus/GormMenuEditor.m

View file

@ -83,7 +83,7 @@
@implementation GormNSMenu
+ (GormNSMenu *) menuWithMenu: (NSMenu *)menu
{
GormNSMenu *newMenu = [GormNSMenu new];
GormNSMenu *newMenu = [[GormNSMenu alloc] init];
NSEnumerator *en = [[menu itemArray] objectEnumerator];
NSMenuItem *item = nil;