diff options
Diffstat (limited to 'demo/Main.qml')
| -rw-r--r-- | demo/Main.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/demo/Main.qml b/demo/Main.qml index 9d3e168..ca0a419 100644 --- a/demo/Main.qml +++ b/demo/Main.qml @@ -82,7 +82,7 @@ ApplicationWindow { Bobink.startDiscovery(); } - BobinkAuth { + OpcUaAuth { id: auth mode: authModeCombo.currentValue username: usernameField.text @@ -267,22 +267,22 @@ ApplicationWindow { model: [ { text: "Anonymous", - mode: BobinkAuth.Anonymous + mode: OpcUaAuth.Anonymous }, { text: "Username / Password", - mode: BobinkAuth.UserPass + mode: OpcUaAuth.UserPass }, { text: "Certificate", - mode: BobinkAuth.Certificate + mode: OpcUaAuth.Certificate } ] } GridLayout { columns: 2 - visible: authModeCombo.currentValue === BobinkAuth.UserPass + visible: authModeCombo.currentValue === OpcUaAuth.UserPass Layout.fillWidth: true Label { |
