* NSSplitView.m in drawRect moved NSRectFill() to backend

* NSSavePanel.m commented out call to NSRunAlertPanel
	* NSText.h and NSText.m integrated source from Daniel B�hringer.
	* NSTextView.h and NSTextView.m integrated source from Daniel B�hringer.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2936 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Felipe A. Rodriguez 1998-08-20 09:56:26 +00:00
parent 3c3d8b4aef
commit 2b9b066fcc
7 changed files with 258 additions and 105 deletions

View file

@ -206,9 +206,9 @@ int ret;
if([self class] == [NSSavePanel class] &&
[[browser selectedCell] isLeaf] && ret == NSOKButton)
{
if(NSRunAlertPanel(@"Save",@"The file %@ in %@ exists. Replace it?",
@"Replace",@"Cancel",nil,[form stringValue],
[self directory]) == NSAlertAlternateReturn)
// if(NSRunAlertPanel(@"Save",@"The file %@ in %@ exists. Replace it?",
// @"Replace",@"Cancel",nil,[form stringValue],
// [self directory]) == NSAlertAlternateReturn)
return NSCancelButton;
}