* Headers/AppKit/NSWindow.h

* Source/NSApplication.m
	* Source/NSWindow.m: Added ivar for attached sheet back.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2009-08-02 14:16:13 +00:00
parent ef7248efba
commit c48ab519e9
4 changed files with 11 additions and 6 deletions

View file

@ -985,8 +985,8 @@ many times.
/* Initialize attributes and flags */
[super init];
[self _initDefaults];
// _attachedSheet = nil;
_attachedSheet = nil;
_backingType = bufferingType;
_styleMask = aStyle;
if (aScreen == nil)
@ -5102,8 +5102,7 @@ current key view.<br />
- (NSWindow *) attachedSheet
{
// return _attachedSheet;
return nil;
return _attachedSheet;
}
@end