some more ref replacements

This commit is contained in:
2022-07-25 11:24:13 +02:00
parent 899d021e00
commit 973d4ee8a5
8 changed files with 22 additions and 15 deletions

View File

@ -96,7 +96,7 @@ ReturnValue_t CommandingServiceBase::initialize() {
if (tmStore == nullptr) {
return ObjectManagerIF::CHILD_INIT_FAILED;
}
tmStoreHelper.setTmStore(tmStore);
tmStoreHelper.setTmStore(*tmStore);
}
if (errReporter == nullptr) {
errReporter =
@ -419,7 +419,7 @@ void CommandingServiceBase::checkTimeout() {
void CommandingServiceBase::setTaskIF(PeriodicTaskIF* task_) { executingTask = task_; }
void CommandingServiceBase::setCustomTmStore(StorageManagerIF* store) {
void CommandingServiceBase::setCustomTmStore(StorageManagerIF& store) {
tmStoreHelper.setTmStore(store);
}
ReturnValue_t CommandingServiceBase::setUpTcReader(store_address_t storeId) {