summaryrefslogtreecommitdiff
path: root/platform/qt
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-11-22 15:43:19 +0100
committerKonstantin Käfer <mail@kkaefer.com>2016-11-22 20:58:51 +0100
commite76de0540284118845c93c4351c82c6c8d5a090a (patch)
treedc295f87b74c5a4766444f6d1e7020e6219017a8 /platform/qt
parent117863f1114551407c481abc752f5fcfd139c878 (diff)
downloadqtlocation-mapboxgl-e76de0540284118845c93c4351c82c6c8d5a090a.tar.gz
[build] move logging to util
Diffstat (limited to 'platform/qt')
-rw-r--r--platform/qt/qt.cmake2
-rw-r--r--platform/qt/src/http_file_source.cpp2
-rw-r--r--platform/qt/src/run_loop_impl.hpp2
-rw-r--r--platform/qt/src/string_stdlib.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/platform/qt/qt.cmake b/platform/qt/qt.cmake
index cb284afcf3..3efdf6cad8 100644
--- a/platform/qt/qt.cmake
+++ b/platform/qt/qt.cmake
@@ -28,7 +28,7 @@ set(MBGL_QT_FILES
PRIVATE platform/default/sqlite3.hpp
# Misc
- PRIVATE platform/default/log_stderr.cpp
+ PRIVATE platform/default/logging_stderr.cpp
# Thread pool
PRIVATE platform/default/mbgl/util/default_thread_pool.cpp
diff --git a/platform/qt/src/http_file_source.cpp b/platform/qt/src/http_file_source.cpp
index 61fa1ca612..9bf2cc5fac 100644
--- a/platform/qt/src/http_file_source.cpp
+++ b/platform/qt/src/http_file_source.cpp
@@ -1,7 +1,7 @@
#include "http_file_source.hpp"
#include "http_request.hpp"
-#include <mbgl/platform/log.hpp>
+#include <mbgl/util/logging.hpp>
#include <QByteArray>
#include <QDir>
diff --git a/platform/qt/src/run_loop_impl.hpp b/platform/qt/src/run_loop_impl.hpp
index ea64e4b977..c1fe8578e3 100644
--- a/platform/qt/src/run_loop_impl.hpp
+++ b/platform/qt/src/run_loop_impl.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <mbgl/platform/log.hpp>
+#include <mbgl/util/logging.hpp>
#include <mbgl/util/async_task.hpp>
#include <mbgl/util/run_loop.hpp>
diff --git a/platform/qt/src/string_stdlib.cpp b/platform/qt/src/string_stdlib.cpp
index c4adecea06..635a01352e 100644
--- a/platform/qt/src/string_stdlib.cpp
+++ b/platform/qt/src/string_stdlib.cpp
@@ -1,4 +1,4 @@
-#include <mbgl/platform/platform.hpp>
+#include <mbgl/util/platform.hpp>
#include <QByteArray>
#include <QString>