From 1c2037e5fa63b300c20f4809bb876fd1d18e83dc Mon Sep 17 00:00:00 2001 From: kelson42 Date: Mon, 5 Sep 2011 18:24:21 +0000 Subject: [PATCH] + better deal with accented paths --- src/common/pathTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/pathTools.cpp b/src/common/pathTools.cpp index 424d64983..2b9578bc4 100644 --- a/src/common/pathTools.cpp +++ b/src/common/pathTools.cpp @@ -24,7 +24,7 @@ const char *nsStringToCString(const nsAString &str) { nsCString tmpStr; #ifdef _WIN32 - LossyCopyUTF16toASCII(str, tmpStr): + LossyCopyUTF16toASCII(str, tmpStr); #else CopyUTF16toUTF8(str, tmpStr); #endif