From 045d4d78cd54f0e2168273041f667e7c1dbac212 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sun, 16 May 2004 21:45:19 +0000 Subject: [PATCH] Minor correction to previous commit. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19357 72102866-910b-0410-8b05-ffd578937521 --- Gorm.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Gorm.m b/Gorm.m index 979e722b..bbe12131 100644 --- a/Gorm.m +++ b/Gorm.m @@ -758,12 +758,11 @@ NSString *GormResizeCellNotification = @"GormResizeCellNotification"; { NSMenu *testMenu; - testMenu = [[NSMenu alloc] initWithTitle: _(@"Test")]; + testMenu = [[NSMenu alloc] initWithTitle: _(@"Test Menu")]; [testMenu addItemWithTitle: _(@"Quit") action: @selector(deferredEndTesting:) keyEquivalent: @"q"]; - [self setMainMenu: testMenu]; - RELEASE(testMenu); + [self setMainMenu: testMenu]; // released, when the menu is reset in endTesting. } else {