mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Correct problem with testInterface.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23134 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fc17434efb
commit
fb005e339f
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-07-05 19:56 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Gorm.m: Correct bug introduced at some point in testInterface which
|
||||
causes the test mode not to display a menu when the application has no
|
||||
menu. It is supposed to show a small test menu so that test mode
|
||||
can be exited.
|
||||
|
||||
2006-07-05 00:02 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormNibWrapperLoader.m: Added check to prevent error
|
||||
|
|
2
Gorm.m
2
Gorm.m
|
@ -493,7 +493,7 @@
|
|||
* If the model didn't have a main menu, create one,
|
||||
* otherwise, ensure that 'quit' ends testing mode.
|
||||
*/
|
||||
if ([self mainMenu] == mainMenu)
|
||||
if (aMenu == nil)
|
||||
{
|
||||
NSMenu *testMenu;
|
||||
|
||||
|
|
Loading…
Reference in a new issue