aboutsummaryrefslogtreecommitdiff
path: root/src/main_qmladaptor.cpp
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-07-08 15:58:57 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-07-08 15:58:57 +0200
commit6072a403da8e0743dfc42d62d89a09724650ebfa (patch)
treef69cddd049a085496b3c26df72b94e909f887b71 /src/main_qmladaptor.cpp
parent5be60cd11d0d9dbde8ca67f0ec88e10540c490db (diff)
downloadRWA.Support.DesktopApp-6072a403da8e0743dfc42d62d89a09724650ebfa.tar.gz
RWA.Support.DesktopApp-6072a403da8e0743dfc42d62d89a09724650ebfa.tar.bz2
RWA.Support.DesktopApp-6072a403da8e0743dfc42d62d89a09724650ebfa.zip
Add_server_wizard: Add new type-error messages
Diffstat (limited to 'src/main_qmladaptor.cpp')
-rw-r--r--src/main_qmladaptor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_qmladaptor.cpp b/src/main_qmladaptor.cpp
index 6684d13..c321ec8 100644
--- a/src/main_qmladaptor.cpp
+++ b/src/main_qmladaptor.cpp
@@ -175,7 +175,7 @@ void MainQMLAdaptor::main_content_replace(QString scene) {
bool MainQMLAdaptor::setConnectButtonEnabled(bool enabled) {
// Find item via 'objectName'
- QQuickItem *scene_remote_control = _engine->rootObjects().at(0)->findChild<QQuickItem*>("Scene_remote_control");
+ QQuickItem *scene_remote_control = _engine->rootObjects().takeFirst()->findChild<QQuickItem*>("Scene_remote_control");
QQuickItem *item = scene_remote_control->findChild<QQuickItem*>("start_support_button");
if (item) {
item->setProperty("enabled", enabled);