From 1e656b6d41d4c39898df1e25c4262019bd78f145 Mon Sep 17 00:00:00 2001 From: "mcmullen%netscape.com" Date: Tue, 4 May 1999 19:39:15 +0000 Subject: [PATCH] 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 --- mozilla/base/src/nsFileSpec.cpp | 4 ++-- mozilla/xpcom/io/nsFileSpec.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/base/src/nsFileSpec.cpp b/mozilla/base/src/nsFileSpec.cpp index 2d2f82e34cf..ed861acd2c6 100644 --- a/mozilla/base/src/nsFileSpec.cpp +++ b/mozilla/base/src/nsFileSpec.cpp @@ -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 diff --git a/mozilla/xpcom/io/nsFileSpec.cpp b/mozilla/xpcom/io/nsFileSpec.cpp index 2d2f82e34cf..ed861acd2c6 100644 --- a/mozilla/xpcom/io/nsFileSpec.cpp +++ b/mozilla/xpcom/io/nsFileSpec.cpp @@ -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