Correction for bug #24146. Removed unhide:.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26831 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-09-04 12:01:10 +00:00
parent adefb08ae6
commit a7a6b897b0
2 changed files with 4 additions and 14 deletions

View file

@ -1,3 +1,7 @@
2008-09-04 08:00-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: Remove unhide: implementation. Correction for bug#24146.
2008-08-24 13:20-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormCustomView.m

14
Gorm.m
View file

@ -1252,20 +1252,6 @@
return classMenu;
}
- (void) unhide: (id)sender
{
[super unhide: sender];
if(!isTesting)
{
id document = [self activeDocument];
id window = [document window];
[(GormDocument *)document setDocumentActive: NO];
[(GormDocument *)document setDocumentActive: YES];
[window orderFront: sender];
[[self mainMenu] display];
}
}
- (BOOL) documentNameIsUnique: (NSString *)filename
{
NSEnumerator *en = [documents objectEnumerator];