The Windows way was right, not sure why it was made different for OS/2.
This commit is contained in:
mkaply%us.ibm.com 2000-09-12 12:24:32 +00:00
Родитель f4f222ef74
Коммит 33cc35240d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -2102,9 +2102,9 @@ NS_IMETHODIMP nsLocalFile::GetURL(char * *aURL)
s++;
}
// Escape the path with the directory mask
nsCAutoString tmp = ePath;
nsCAutoString tmp(ePath);
tmp.ReplaceChar(":", '|');
nsCAutoString escPath = "file://";
nsCAutoString escPath("file://");
escPath += tmp;
// rv = nsURLEscape(ePath,nsIIOService::url_Directory + nsIIOService::url_Forced, escPath);
// if (NS_SUCCEEDED(rv)) {