Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -r0bb5f08eb3570de6bff3ce67ca502db129b59096 -r45968308d0ad5074e17343e0e0f0a8c5a6c456d5 --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 0bb5f08eb3570de6bff3ce67ca502db129b59096) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 45968308d0ad5074e17343e0e0f0a8c5a6c456d5) @@ -14,7 +14,7 @@ */ // Qt -import QtQuick 2.12 +import QtQuick // Project import Gui.Actions 0.1 @@ -44,8 +44,8 @@ readonly property string separatorText : ":" property alias isRegistered : _checkListView.completeVisible - property var ipValidator : RegExpValidator { - regExp:/^(([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))\.){3}([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))$/ + property var ipValidator : RegularExpressionValidator { + regularExpression:/^(([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))\.){3}([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))$/ } onVisibleChanged: { @@ -155,9 +155,9 @@ } Connections { target: vCloudSync - function onisRunningEntered ( vValue ) { _checkListView.checkList.setItemExt( 0, true )} - function onisRegisterStartEntered ( vValue ) { _checkListView.checkList.setItemExt( 1, true )} - function onisRegisterDoneEntered ( vValue ) { _checkListView.checkList.setItemExt( 1, vValue )} + function onIsRunningEntered ( vValue ) { _checkListView.checkList.setItemExt( 0, true )} + function onIsRegisterStartEntered ( vValue ) { _checkListView.checkList.setItemExt( 1, true )} + function onIsRegisterDoneEntered ( vValue ) { _checkListView.checkList.setItemExt( 1, vValue )} } notificationText: "" Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -r0ec66896d0a55a98915dda17f2acf3ff290398a7 -r45968308d0ad5074e17343e0e0f0a8c5a6c456d5 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 0ec66896d0a55a98915dda17f2acf3ff290398a7) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 45968308d0ad5074e17343e0e0f0a8c5a6c456d5) @@ -32,8 +32,8 @@ SettingsBase { id: _root itemIndex : SettingsStack.WiFi - property var ipValidator: RegExpValidator { - regExp:/^(([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))\.){3}([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))$/ + property var ipValidator: RegularExpressionValidator { + regularExpression:/^(([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))\.){3}([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))$/ } labelWidth : 200