* GormLib/IBInspector.m: Remove uneeded call to

[window setDocumentEdited:] in touch: method.
	* Palettes/2Controls/GormButtonAttributesInspector.m:
	In ok: call [super ok:].


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23844 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-10-11 01:29:53 +00:00
parent 94708f88b1
commit 22950c742d
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2006-10-10 21:28-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* GormLib/IBInspector.m: Remove uneeded call to
[window setDocumentEdited:] in touch: method.
* Palettes/2Controls/GormButtonAttributesInspector.m:
In ok: call [super ok:].
2006-10-10 20:56-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormClassEditor.gorm: Make button momentary push

View file

@ -113,7 +113,6 @@ static NSNotificationCenter *nc = nil;
- (void) touch: (id)sender
{
id<IBDocuments> doc = [(id<IB>)NSApp activeDocument];
[window setDocumentEdited: YES];
[doc touch];
}

View file

@ -175,6 +175,8 @@
*/
[object setButtonType: [sender tag]];
}
[super ok: sender];
}
-(void) revert: (id)sender