diff options
4 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/platforms/webgl/qwebglcontext.cpp b/src/plugins/platforms/webgl/qwebglcontext.cpp index e624595..15fcb93 100644 --- a/src/plugins/platforms/webgl/qwebglcontext.cpp +++ b/src/plugins/platforms/webgl/qwebglcontext.cpp @@ -53,7 +53,7 @@ QT_BEGIN_NAMESPACE -static Q_LOGGING_CATEGORY(lc, "qt.qpa.webgl.context") +Q_STATIC_LOGGING_CATEGORY(lc, "qt.qpa.webgl.context") class QWebGLContextPrivate { diff --git a/src/plugins/platforms/webgl/qwebglhttpserver.cpp b/src/plugins/platforms/webgl/qwebglhttpserver.cpp index 133163e..1212473 100644 --- a/src/plugins/platforms/webgl/qwebglhttpserver.cpp +++ b/src/plugins/platforms/webgl/qwebglhttpserver.cpp @@ -50,7 +50,7 @@ QT_BEGIN_NAMESPACE -static Q_LOGGING_CATEGORY(lc, "qt.qpa.webgl.httpserver") +Q_STATIC_LOGGING_CATEGORY(lc, "qt.qpa.webgl.httpserver") struct HttpRequest { quint16 port = 0; diff --git a/src/plugins/platforms/webgl/qwebglwebsocketserver.cpp b/src/plugins/platforms/webgl/qwebglwebsocketserver.cpp index c7fab3b..aac06cb 100644 --- a/src/plugins/platforms/webgl/qwebglwebsocketserver.cpp +++ b/src/plugins/platforms/webgl/qwebglwebsocketserver.cpp @@ -53,7 +53,7 @@ QT_BEGIN_NAMESPACE -static Q_LOGGING_CATEGORY(lc, "qt.qpa.webgl.websocketserver") +Q_STATIC_LOGGING_CATEGORY(lc, "qt.qpa.webgl.websocketserver") inline QWebGLIntegration *webGLIntegration() { diff --git a/src/plugins/platforms/webgl/qwebglwindow.cpp b/src/plugins/platforms/webgl/qwebglwindow.cpp index ed26f08..ef429e7 100644 --- a/src/plugins/platforms/webgl/qwebglwindow.cpp +++ b/src/plugins/platforms/webgl/qwebglwindow.cpp @@ -46,7 +46,7 @@ QT_BEGIN_NAMESPACE -static Q_LOGGING_CATEGORY(lc, "qt.qpa.webgl.window") +Q_STATIC_LOGGING_CATEGORY(lc, "qt.qpa.webgl.window") QAtomicInt QWebGLWindowPrivate::nextId(1); |