diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2018-10-18 17:33:27 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2018-10-23 12:23:40 +0200 |
commit | 282c71e8e9a8ec9c2eab612f2e60a71b15d24c8a (patch) | |
tree | 2d5a7d0f9b054af2686fe94dfa8c5690e8c92e72 /platform/qt | |
parent | 729eeeb3f821981cc5d3c9e06ffbb85ed4d857d7 (diff) | |
download | qtlocation-mapboxgl-282c71e8e9a8ec9c2eab612f2e60a71b15d24c8a.tar.gz |
[core] unify UTF-8/16 conversion to <boost/locale/encoding_utf.hpp>
Diffstat (limited to 'platform/qt')
-rw-r--r-- | platform/qt/src/utf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/qt/src/utf.cpp b/platform/qt/src/utf.cpp index d8bf2ca0b3..069c7bca39 100644 --- a/platform/qt/src/utf.cpp +++ b/platform/qt/src/utf.cpp @@ -5,7 +5,7 @@ namespace mbgl { namespace util { -std::u16string utf8_to_utf16::convert(std::string const& utf8) { +std::u16string convertUTF8ToUTF16(std::string const& utf8) { auto utf16 = QString::fromUtf8(utf8.data(), utf8.length()); // Newers Qt have QString::toStdU16String(), but this is how it is |