Add method directoryURL to NSSavePanel.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30278 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2010-05-02 10:21:40 +00:00
parent d223cc666c
commit afc320aacf
3 changed files with 15 additions and 2 deletions

View file

@ -1131,6 +1131,11 @@ selectCellWithString: (NSString*)title
return @"";
}
- (NSURL *) directoryURL
{
return [NSURL fileURLWithPath: [self directory]];
}
/**<p> Returns the absolute filename choosen by the user. Do not invoke
filename within a modal loop because the information that these
methods fetch is updated only upon return.</p>