Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: Shamser Ahmed <[email protected]>
  • Loading branch information
shamser committed May 22, 2024
1 parent ec49503 commit 63b8534
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dali/base/sysinfologger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class CSysInfoLoggerMsg : implements ISysInfoLoggerMsg
CSysInfoLoggerMsg & set(IPropertyTree & ptree, IPropertyTree & _root, bool _updateable)
{
msgPtree.setown(&ptree);
root.set(&_root);
root.set(LINK(&_root));
updateable = _updateable;
return * this;
}
Expand Down Expand Up @@ -412,13 +412,13 @@ class CSysInfoLoggerMsgIterator : public CInterface, implements ISysInfoLoggerMs
CSysInfoLoggerMsgIterator(ISysInfoLoggerMsgFilter * _filter, bool _updateable=false) : filter(_filter), updateable(_updateable)
{
}
virtual ISysInfoLoggerMsg & query() override
CSysInfoLoggerMsg & queryInfoLoggerMsg()
{
return infoMsg.set(msgIter->get(), *(root.get()), updateable);
}
CSysInfoLoggerMsg & queryInfoLoggerMsg()
virtual ISysInfoLoggerMsg & query() override
{
return infoMsg.set(msgIter->get(), *(root.get()), updateable);
return queryInfoLoggerMsg();
}
virtual bool first() override
{
Expand Down Expand Up @@ -608,7 +608,7 @@ unsigned deleteOlderThanLogSysInfoMsg(bool visibleOnly, bool hiddenOnly, unsigne
return count;
}

#ifdef _USE_CPPUNIT
#ifdef _USE_CPPUNIT0
#include "unittests.hpp"

#define SOURCE_CPPUNIT "cppunit"
Expand Down

0 comments on commit 63b8534

Please sign in to comment.