fixing code that relied on implicit string construction. r=scc

This commit is contained in:
beard%netscape.com 2000-09-02 07:39:16 +00:00
Родитель 4503140e65
Коммит 30b9358889
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -97,9 +97,9 @@ hack_nsIFile2URL(nsIFile* file, char * *aURL)
SwapSlashColon(ePath);
#endif
// 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)) {