mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 13:20:38 +00:00
Fix bug launching apps for services. mingw unicode fix.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@22051 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9b38137940
commit
f52bf74e5c
3 changed files with 19 additions and 4 deletions
|
@ -1301,8 +1301,8 @@ inFileViewerRootedAtPath: (NSString*)rootFullpath
|
|||
{
|
||||
end++;
|
||||
}
|
||||
len = (end - ptr) * sizeof(unichar);
|
||||
path = [mgr stringWithFileSystemRepresentation: (char*)ptr length: len];
|
||||
len = (end - ptr);
|
||||
path = [mgr stringWithFileSystemRepresentation: ptr length: len];
|
||||
[names addObject: path];
|
||||
}
|
||||
if (base != buf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue