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:
Richard Frith-Macdonald 2005-11-20 20:29:06 +00:00
parent 86cb486769
commit c15a675fbc
3 changed files with 19 additions and 4 deletions

View file

@ -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)