From 22950c742d649fd5501ed4961e2346e0aeb1033c Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Wed, 11 Oct 2006 01:29:53 +0000 Subject: [PATCH] * 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 --- ChangeLog | 7 +++++++ GormLib/IBInspector.m | 1 - Palettes/2Controls/GormButtonAttributesInspector.m | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 757ee1f2..2165c17a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-10-10 21:28-EDT Gregory John Casamento + + * 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 * English.lproj/GormClassEditor.gorm: Make button momentary push diff --git a/GormLib/IBInspector.m b/GormLib/IBInspector.m index 03bdc837..3d3e4f8e 100644 --- a/GormLib/IBInspector.m +++ b/GormLib/IBInspector.m @@ -113,7 +113,6 @@ static NSNotificationCenter *nc = nil; - (void) touch: (id)sender { id doc = [(id)NSApp activeDocument]; - [window setDocumentEdited: YES]; [doc touch]; } diff --git a/Palettes/2Controls/GormButtonAttributesInspector.m b/Palettes/2Controls/GormButtonAttributesInspector.m index 34a1be6e..7ae84877 100644 --- a/Palettes/2Controls/GormButtonAttributesInspector.m +++ b/Palettes/2Controls/GormButtonAttributesInspector.m @@ -175,6 +175,8 @@ */ [object setButtonType: [sender tag]]; } + + [super ok: sender]; } -(void) revert: (id)sender