mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Pass -setTitle: and -setDocumentEdited: calls along to super.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19763 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6f8905d60d
commit
8228108b86
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-07-22 00:59 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/GSStandardWindowDecorationView.m (-setDocumentEdited:,
|
||||
-setTitle:): Pass the calls along to super.
|
||||
|
||||
2004-07-21 19:53 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Source/NSFontPanel.m (-_trySelectSize:updateSizeField:): Add
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue