summaryrefslogtreecommitdiffstats
path: root/tests/quicktestbrowser/main.cpp
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2021-06-01 17:26:36 +0200
committerMichal Klocek <michal.klocek@qt.io>2021-06-15 12:58:21 +0200
commit5f723fe7469ac9ce3373dbcd3eb0978595271514 (patch)
tree6db35aad83bad5db726b6948740fb5504f5430b0 /tests/quicktestbrowser/main.cpp
parent31616ac94abad3e3d57b4b2d51858106655a85dd (diff)
Fix QWebEngineQuick namespace for webenginequick module
This is followup change for QtWebEngineQuick rename. [ChangeLog][QtWebEngineQuick] Use namespace QtWebEngineQuick QtWebEngine::initialize() is now QtWebEnigneQuick::initialize() Pick-to: 6.2 Change-Id: I90acab04ff0240b399a863c88eff915efa360f6f Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/quicktestbrowser/main.cpp')
-rw-r--r--tests/quicktestbrowser/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/quicktestbrowser/main.cpp b/tests/quicktestbrowser/main.cpp
index 9dc0c2dee..cb21518c9 100644
--- a/tests/quicktestbrowser/main.cpp
+++ b/tests/quicktestbrowser/main.cpp
@@ -38,7 +38,7 @@ typedef QGuiApplication Application;
#include <QtQml/QQmlApplicationEngine>
#include <QtQml/QQmlContext>
#include <QtQml/QQmlComponent>
-#include <QtWebEngineQuick/qtwebengineglobal.h>
+#include <QtWebEngineQuick/qtwebenginequickglobal.h>
#include <QtWebEngineQuick/QQuickWebEngineProfile>
#include <QtWebEngineCore/qwebenginecookiestore.h>
@@ -64,7 +64,7 @@ int main(int argc, char **argv)
// Enable dev tools by default for the test browser
if (qgetenv("QTWEBENGINE_REMOTE_DEBUGGING").isNull())
qputenv("QTWEBENGINE_REMOTE_DEBUGGING", "1337");
- QtWebEngine::initialize();
+ QtWebEngineQuick::initialize();
QQmlApplicationEngine appEngine;
Utils utils;