aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleManager.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-02-03 18:01:26 +0000
committersaturneric <[email protected]>2025-02-03 18:01:26 +0000
commitd3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600 (patch)
tree5cc7838f1325b076b91bb898fd0da3cfcb60b455 /src/core/module/ModuleManager.cpp
parentdoc: update README.md (diff)
parentfix: set pb range when size of operas > 1 (diff)
downloadGpgFrontend-d3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600.tar.gz
GpgFrontend-d3d94f5b7a3e60b3bbb73e832bab7cf2d44a1600.zip
Merge branch 'develop'
Diffstat (limited to 'src/core/module/ModuleManager.cpp')
-rw-r--r--src/core/module/ModuleManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/module/ModuleManager.cpp b/src/core/module/ModuleManager.cpp
index 8f97adc3..d340a561 100644
--- a/src/core/module/ModuleManager.cpp
+++ b/src/core/module/ModuleManager.cpp
@@ -220,7 +220,7 @@ class ModuleManager::Impl {
return grt_->ListenPublish(o, n, k, c);
}
- auto ListRTChildKeys(const QString& n, const QString& k) -> std::vector<Key> {
+ auto ListRTChildKeys(const QString& n, const QString& k) -> QContainer<Key> {
return grt_->ListChildKeys(n, k);
}
@@ -271,7 +271,7 @@ auto ListenRTPublishEvent(QObject* o, Namespace n, Key k,
}
auto ListRTChildKeys(const QString& namespace_,
- const QString& key) -> std::vector<Key> {
+ const QString& key) -> QContainer<Key> {
return ModuleManager::GetInstance().ListRTChildKeys(namespace_, key);
}
@@ -341,7 +341,7 @@ auto ModuleManager::ListenRTPublish(QObject* o, Namespace n, Key k,
}
auto ModuleManager::ListRTChildKeys(const QString& n,
- const QString& k) -> std::vector<Key> {
+ const QString& k) -> QContainer<Key> {
return p_->ListRTChildKeys(n, k);
}