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