class EBusLoop: newCommands renamed to reload.

This commit is contained in:
Roland Jax
2014-11-11 15:09:52 +01:00
parent db91a1d47d
commit 694f22c718
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -353,7 +353,7 @@ std::string BaseLoop::decodeMessage(const std::string& data)
delete m_commands;
m_commands = commands;
m_ebusloop->newCommands(m_commands);
m_ebusloop->reload(m_commands);
result << "done";
break;
+1 -1
View File
@@ -48,7 +48,7 @@ public:
void dump() { m_dumpState == true ? m_dumpState = false : m_dumpState = true ; }
void raw() { m_logRawData == true ? m_logRawData = false : m_logRawData = true ; }
void newCommands(Commands* commands) { m_commands = commands; }
void reload(Commands* commands) { m_commands = commands; }
private:
Commands* m_commands;