summaryrefslogtreecommitdiff
path: root/platform/qt/src/utf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/qt/src/utf.cpp')
-rw-r--r--platform/qt/src/utf.cpp2
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