* Headers/AppKit/NSWindow.h: Comment out _attachedSheet ivar.

* Source/NSAlert.m: Change code to use hightlightWithLevel: method
	in resetWindow method.
	* Source/NSApplication.m: Stub out setAttachedSheet method.
	* Source/NSWindow.m: Remove new ivar for next release and stub out
	attachedSheet method.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28415 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-07-27 16:31:32 +00:00
parent 519598ef24
commit 3a16583dcb
5 changed files with 21 additions and 19 deletions

View file

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