diff --git a/ChangeLog b/ChangeLog index 4b3b5839c..93e4df356 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-07-22 00:59 Alexander Malmberg + + * Source/GSStandardWindowDecorationView.m (-setDocumentEdited:, + -setTitle:): Pass the calls along to super. + 2004-07-21 19:53 Alexander Malmberg * Source/NSFontPanel.m (-_trySelectSize:updateSizeField:): Add diff --git a/Source/GSStandardWindowDecorationView.m b/Source/GSStandardWindowDecorationView.m index 6247275fb..b607b9678 100644 --- a/Source/GSStandardWindowDecorationView.m +++ b/Source/GSStandardWindowDecorationView.m @@ -347,6 +347,7 @@ static const NSRectEdge edges[4] = {NSMinXEdge, NSMaxYEdge, { if (isTitled) [self setNeedsDisplayInRect: titleBarRect]; + [super setTitle: newTitle]; } -(void) setInputState: (int)state @@ -371,6 +372,7 @@ static const NSRectEdge edges[4] = {NSMinXEdge, NSMaxYEdge, [closeButton setAlternateImage: [NSImage imageNamed: @"common_CloseH"]]; } + [super setDocumentEdited: flag]; }