diff options
Diffstat (limited to 'src/remotesettings/app/main.qml')
| -rw-r--r-- | src/remotesettings/app/main.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/remotesettings/app/main.qml b/src/remotesettings/app/main.qml index d677b1e4..aca9e857 100644 --- a/src/remotesettings/app/main.qml +++ b/src/remotesettings/app/main.qml @@ -32,8 +32,8 @@ import QtQuick 2.7 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.3 -import QtIvi 1.0 -import QtIvi.Media 1.0 +import QtInterfaceFramework +import QtInterfaceFramework.Media import shared.com.pelagicore.remotesettings 1.0 import shared.com.pelagicore.drivedata 1.0 @@ -93,11 +93,11 @@ ApplicationWindow { property bool isConnected: false - onIsInitializedChanged: { + onIsInitializedChanged: function(isInitialized) { isConnected = isInitialized; } - onErrorChanged: { + onErrorChanged: function(error) { if (error > 0) { //Any other state then NoError=0 isConnected = false; @@ -126,7 +126,7 @@ ApplicationWindow { lastUrls: client.lastUrls anchors.centerIn: parent - onAccepted: { + onAccepted: function(accepted) { if (accepted) { client.connectToServer(url); uiSettings.setServiceObject(null); |
