summaryrefslogtreecommitdiffstats
path: root/demo/Main.qml
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-02-19 22:31:16 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-02-19 22:31:16 +0100
commit364430e417600c68133673254b58b4d35608777a (patch)
tree3b4e3471f19239780a2df23ced27c84de266bf95 /demo/Main.qml
parent5fe029fd127dd70079a01eb6dfbd347954bba9de (diff)
downloadBobinkQtOpcUa-364430e417600c68133673254b58b4d35608777a.tar.gz
BobinkQtOpcUa-364430e417600c68133673254b58b4d35608777a.zip
Reorganize BobinkClient by domain and make s_instance private
Group header and source by domain (Connection, Discovery, PKI) so properties, methods, and signal handlers live together. Move enums before constructor, move s_instance to private, and add a public instance() accessor used by BobinkNode.
Diffstat (limited to 'demo/Main.qml')
-rw-r--r--demo/Main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/Main.qml b/demo/Main.qml
index ef09b7d..dae415f 100644
--- a/demo/Main.qml
+++ b/demo/Main.qml
@@ -37,7 +37,7 @@ ApplicationWindow {
}
}
function onConnectionError(message) {
- debugConsole.appendLog("ERROR: " + message);
+ debugConsole.appendLog("Connection error: " + message);
root.autoConnectFailed = true;
}
function onStatusMessage(message) {