mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 06:51:44 +00:00
Optimize last change on NSSavePanel.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27964 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ee49afcb9b
commit
2229c7fc91
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-02-23 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSSavePanel.m (-directory): Optimize last change.
|
||||
|
||||
2009-02-22 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSButtonCell.m: Changed all title methods to use the
|
||||
|
|
|
@ -1113,7 +1113,7 @@ selectCellWithString: (NSString*)title
|
|||
- (NSString*) directory
|
||||
{
|
||||
if (_directory)
|
||||
return [NSString stringWithString:_directory];
|
||||
return AUTORELEASE([_directory copy]);
|
||||
else
|
||||
return @"";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue