mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 19:07:38 +00:00
Fix error appending path components.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25218 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7f736e9a2b
commit
436bd9b029
2 changed files with 9 additions and 2 deletions
|
@ -385,8 +385,8 @@ static NSOpenPanel *_gs_gui_open_panel = nil;
|
|||
{
|
||||
while ((currCell = [cellEnum nextObject]))
|
||||
{
|
||||
[ret addObject: [NSString stringWithFormat: @"%@/%@", dir,
|
||||
[currCell stringValue]]];
|
||||
[ret addObject:
|
||||
[dir stringByAppendingPathComponent: [currCell stringValue]]];
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue