diff options
author | George Hazan <ghazan@miranda.im> | 2021-05-20 11:40:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-05-20 11:40:41 +0300 |
commit | 0d08ce17f07300d4851e24a7123415015849605c (patch) | |
tree | 032069532d2ee673456f339032a4e56cca29f1b8 /protocols/CurrencyRates/src/HTTPSession.cpp | |
parent | 676ff2e0bd23d7fe6b958ab3253d2dc1ccbe5eef (diff) |
CurrencyRates: old unused junk removed + code cleaning
Diffstat (limited to 'protocols/CurrencyRates/src/HTTPSession.cpp')
-rw-r--r-- | protocols/CurrencyRates/src/HTTPSession.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/CurrencyRates/src/HTTPSession.cpp b/protocols/CurrencyRates/src/HTTPSession.cpp index 6227f1b12a..12b556ab38 100644 --- a/protocols/CurrencyRates/src/HTTPSession.cpp +++ b/protocols/CurrencyRates/src/HTTPSession.cpp @@ -19,14 +19,14 @@ static int find_header(const NETLIBHTTPREQUEST* pRequest, const char* hdr) return -1; } -bool CHTTPSession::OpenURL(const tstring &rsURL) +bool CHTTPSession::OpenURL(const std::wstring &rsURL) { std::string s = currencyrates_t2a(rsURL.c_str()); m_szUrl = s.c_str(); return true; } -bool CHTTPSession::ReadResponce(tstring &rsResponce) +bool CHTTPSession::ReadResponce(std::wstring &rsResponce) { if (m_szUrl.IsEmpty()) return false; |