+ better deal with accented paths

This commit is contained in:
kelson42 2011-09-05 18:24:21 +00:00
parent 1475646cf3
commit 1c2037e5fa
1 changed files with 1 additions and 1 deletions

View File

@ -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