diff options
author | Kai Koehne <kai.koehne@theqtcompany.com> | 2015-09-17 14:58:38 +0200 |
---|---|---|
committer | Kai Koehne <kai.koehne@theqtcompany.com> | 2015-10-15 15:09:51 +0000 |
commit | a594bd5ddb0926a0854c031307606ac7a143ac77 (patch) | |
tree | f145e5e6316ab04048f073fbdd0c7b9b4ee144ae | |
parent | 7074823ba6eebc51e04437a24cff158260d4a700 (diff) | |
download | qtwebsockets-a594bd5ddb0926a0854c031307606ac7a143ac77.tar.gz |
Update plugins.qmltypes
0610115192f4a1 changed the port type from uint16 to int.
Change-Id: I800fe254648d026c8e29d93a2945bdf8380aa950
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r-- | src/imports/qmlwebsockets/plugins.qmltypes | 2 | ||||
-rw-r--r-- | src/imports/qmlwebsockets_compat/plugins.qmltypes | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/qmlwebsockets/plugins.qmltypes b/src/imports/qmlwebsockets/plugins.qmltypes index 7dff55c..b79da44 100644 --- a/src/imports/qmlwebsockets/plugins.qmltypes +++ b/src/imports/qmlwebsockets/plugins.qmltypes @@ -4,7 +4,7 @@ import QtQuick.tooling 1.2 // It is used for QML tooling purposes only. // // This file was auto-generated by: -// 'qmlplugindump -notrelocatable QtWebSockets 1.0' +// 'qmlplugindump -nonrelocatable QtWebSockets 1.0' Module { dependencies: [] diff --git a/src/imports/qmlwebsockets_compat/plugins.qmltypes b/src/imports/qmlwebsockets_compat/plugins.qmltypes index ff8d976..961ed1c 100644 --- a/src/imports/qmlwebsockets_compat/plugins.qmltypes +++ b/src/imports/qmlwebsockets_compat/plugins.qmltypes @@ -4,7 +4,7 @@ import QtQuick.tooling 1.2 // It is used for QML tooling purposes only. // // This file was auto-generated by: -// 'qmlplugindump -notrelocatable Qt.WebSockets 1.0' +// 'qmlplugindump -nonrelocatable Qt.WebSockets 1.0' Module { dependencies: [] @@ -56,7 +56,7 @@ Module { exportMetaObjectRevisions: [0] Property { name: "url"; type: "QUrl"; isReadonly: true } Property { name: "host"; type: "string" } - Property { name: "port"; type: "ushort" } + Property { name: "port"; type: "int" } Property { name: "name"; type: "string" } Property { name: "errorString"; type: "string"; isReadonly: true } Property { name: "listen"; type: "bool" } @@ -75,7 +75,7 @@ Module { } Signal { name: "portChanged" - Parameter { name: "port"; type: "ushort" } + Parameter { name: "port"; type: "int" } } Signal { name: "nameChanged" |