aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2019-10-04 14:52:19 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2019-10-04 14:52:19 +0200
commitebf300d8dba264b6df910f5c946659c691ea5f9d (patch)
treeb20fb7f228fc5fa048bcb6ba7bceab281c43da9e
parentc95319caf93c469f531b4d2791810684b6ee90aa (diff)
parentd87b0adb32e7ed1d897670b59d7ebbb7c504c75c (diff)
Merge remote-tracking branch 'origin/wip/qt6' into dev
Conflicts: .qmake.conf Change-Id: I65d3dcf8373137f14476cf37d2d2119de006a917
-rw-r--r--.qmake.conf2
-rw-r--r--src/imports/webchannel/plugin.cpp5
-rw-r--r--src/webchannel/qmetaobjectpublisher.cpp2
3 files changed, 5 insertions, 4 deletions
diff --git a/.qmake.conf b/.qmake.conf
index 748ca99..05001fb 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,4 +1,4 @@
load(qt_build_config)
CONFIG += warning_clean
-MODULE_VERSION = 5.15.0
+MODULE_VERSION = 6.0.0
diff --git a/src/imports/webchannel/plugin.cpp b/src/imports/webchannel/plugin.cpp
index b6d4018..45d83b1 100644
--- a/src/imports/webchannel/plugin.cpp
+++ b/src/imports/webchannel/plugin.cpp
@@ -61,8 +61,9 @@ void QWebChannelPlugin::registerTypes(const char *uri)
int minor = 0;
qmlRegisterType<QQmlWebChannel>(uri, major, minor, "WebChannel");
- // Auto-increment the import to stay in sync with ALL future QtQuick minor versions
- qmlRegisterModule(uri, major, QT_VERSION_MINOR);
+ // The minor version used to be the current Qt 5 minor. For compatibility it is the last
+ // Qt 5 release.
+ qmlRegisterModule(uri, major, 15);
}
QT_END_NAMESPACE
diff --git a/src/webchannel/qmetaobjectpublisher.cpp b/src/webchannel/qmetaobjectpublisher.cpp
index 124b5c6..c0a12dc 100644
--- a/src/webchannel/qmetaobjectpublisher.cpp
+++ b/src/webchannel/qmetaobjectpublisher.cpp
@@ -899,7 +899,7 @@ void QMetaObjectPublisher::handleMessage(const QJsonObject &message, QWebChannel
transport->sendMessage(createResponse(message.value(KEY_ID), initializeClient(transport)));
} else if (type == TypeDebug) {
static QTextStream out(stdout);
- out << "DEBUG: " << message.value(KEY_DATA).toString() << endl;
+ out << "DEBUG: " << message.value(KEY_DATA).toString() << Qt::endl;
} else if (message.contains(KEY_OBJECT)) {
const QString &objectName = message.value(KEY_OBJECT).toString();
QObject *object = registeredObjects.value(objectName);