summaryrefslogtreecommitdiff
path: root/plugins/CurrencyRates/src/DBUtils.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-14 14:01:44 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-14 14:01:44 +0300
commit8368f365becd8668dbce2e40cecc7ba4f882f41b (patch)
treed446e441cf00d86f5cfb59ac5fd91cad6c0d37c8 /plugins/CurrencyRates/src/DBUtils.cpp
parent2a704d136a65cc39ead589a6bbbc99b28a4bab82 (diff)
XML iterators, first version
Diffstat (limited to 'plugins/CurrencyRates/src/DBUtils.cpp')
-rw-r--r--plugins/CurrencyRates/src/DBUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CurrencyRates/src/DBUtils.cpp b/plugins/CurrencyRates/src/DBUtils.cpp
index 53e1f211b3..571bad0bfb 100644
--- a/plugins/CurrencyRates/src/DBUtils.cpp
+++ b/plugins/CurrencyRates/src/DBUtils.cpp
@@ -4,7 +4,7 @@ std::wstring GetNodeText(const TiXmlElement *pNode)
{
auto *pszText = pNode->GetText();
if (pszText)
- return Utf2T(pszText);
+ return Utf2T(pszText).get();
return std::wstring();
}