mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 15:11:37 +00:00
Return autoreleased copy of the directory string
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27857 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53271d8bd3
commit
0fed43fa2c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-02-12 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Source/NSSavePanel.m: Return autoreleased copy of the directory
|
||||
string
|
||||
|
||||
2009-02-12 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/make_services.m: Fix error parsing CFBundleURLTypes
|
||||
|
|
|
@ -1113,7 +1113,7 @@ selectCellWithString: (NSString*)title
|
|||
- (NSString*) directory
|
||||
{
|
||||
if (_directory)
|
||||
return _directory;
|
||||
return [NSString stringWithString:_directory];
|
||||
else
|
||||
return @"";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue