summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/src/domain/composercontroller.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/framework/src/domain/composercontroller.cpp b/framework/src/domain/composercontroller.cpp
index 5581dfa9..2286a71b 100644
--- a/framework/src/domain/composercontroller.cpp
+++ b/framework/src/domain/composercontroller.cpp
@@ -103,8 +103,6 @@ public:
103 QSet<QByteArray> mMissingKeys; 103 QSet<QByteArray> mMissingKeys;
104 AddresseeController() : Kube::ListPropertyController{{"name", "keyFound", "key"}} 104 AddresseeController() : Kube::ListPropertyController{{"name", "keyFound", "key"}}
105 { 105 {
106 setProperty("foundAllKeys", true);
107
108 QObject::connect( 106 QObject::connect(
109 this, &Kube::ListPropertyController::added, this, [this](const QByteArray &id, const QVariantMap &map) { 107 this, &Kube::ListPropertyController::added, this, [this](const QByteArray &id, const QVariantMap &map) {
110 findKey(id, map.value("name").toString()); 108 findKey(id, map.value("name").toString());
@@ -152,8 +150,6 @@ public:
152 } else { 150 } else {
153 SinkWarning() << "Failed to find key for recipient."; 151 SinkWarning() << "Failed to find key for recipient.";
154 } 152 }
155
156 setProperty("foundAllKeys", mMissingKeys.isEmpty());
157 }); 153 });
158 } 154 }
159 155