So much for that last touchup between building and committing...

git-svn-id: svn://10.0.0.236/trunk@30163 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcmullen%netscape.com
1999-05-04 19:39:15 +00:00
parent 7c346f9935
commit 1e656b6d41
2 changed files with 4 additions and 4 deletions

View File

@@ -461,7 +461,7 @@ nsFileURL::nsFileURL(const char* inString, PRBool inCreateDirs)
// inString is escaped. We want to make an nsFilePath, which requires
// an unescaped string.
nsSimpleCharString unescapedPath(inString + kFileURLPrefixLength);
unescapedPath.Unescape()
unescapedPath.Unescape();
nsFilePath path(unescapedPath, inCreateDirs);
*this = path;
} // nsFileURL::nsFileURL
@@ -481,7 +481,7 @@ nsFileURL::nsFileURL(const nsString& inString, PRBool inCreateDirs)
// inString is escaped. We want to make an nsFilePath, which requires
// an unescaped string.
nsSimpleCharString unescapedPath(aCString + kFileURLPrefixLength);
unescapedPath.Unescape()
unescapedPath.Unescape();
nsFilePath path(unescapedPath, inCreateDirs);
*this = path;
} // nsFileURL::nsFileURL