diff options
Diffstat (limited to 'protocols/CurrencyRates/src/DBUtils.cpp')
-rw-r--r-- | protocols/CurrencyRates/src/DBUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/CurrencyRates/src/DBUtils.cpp b/protocols/CurrencyRates/src/DBUtils.cpp index 20189c0f3f..acc4debddb 100644 --- a/protocols/CurrencyRates/src/DBUtils.cpp +++ b/protocols/CurrencyRates/src/DBUtils.cpp @@ -35,7 +35,7 @@ bool CurrencyRates_DBReadDouble(MCONTACT hContact, const char *szModule, const c return bResult; } -void FixInvalidChars(tstring &s) +void FixInvalidChars(std::wstring &s) { for (auto &c : s) if (wcschr(L"\\/:*?\"<>|", c)) |