* Palettes/0Menus/GormNSMenu.m: Fix memory leak.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@27683 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-01-25 12:46:27 +00:00
parent 1ccf166c4b
commit 1e20d5cf3d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-01-25 07:54-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/0Menus/GormNSMenu.m: Fix memory leak.
2009-01-25 07:00-EST Gregory John Casamento <greg_casamento@yahoo.com> 2009-01-25 07:00-EST Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormFilePrefsManager.m * GormCore/GormFilePrefsManager.m

View file

@ -170,7 +170,7 @@
// [win setMenu: self]; // [win setMenu: self];
[win setLevel: NSSubmenuWindowLevel]; [win setLevel: NSSubmenuWindowLevel];
[win setExcludedFromWindowsMenu: YES]; [win setExcludedFromWindowsMenu: YES];
RETAIN(win); // FIXME: Argh.. this may leak.. temporary fix. // RETAIN(win); // FIXME: Argh.. this may leak.. temporary fix.
return win; return win;
} }