diff --git a/source/shoh/src/threads/manager/Manager.cpp b/source/shoh/src/threads/manager/Manager.cpp index 507a9a6..a450a3f 100644 --- a/source/shoh/src/threads/manager/Manager.cpp +++ b/source/shoh/src/threads/manager/Manager.cpp @@ -26,7 +26,7 @@ void Manager::taskFunction() for(;;) { _qm->receive(ThreadCommon::QueueManager::manager_event_master, &data, portMAX_DELAY); - _menu.HandleEventPair(&data); + _menu.parseEvent(&data); } } diff --git a/source/shoh/src/threads/manager/Menu.cpp b/source/shoh/src/threads/manager/Menu.cpp index cd31c4d..f2086f4 100644 --- a/source/shoh/src/threads/manager/Menu.cpp +++ b/source/shoh/src/threads/manager/Menu.cpp @@ -38,7 +38,7 @@ Menu::readSetPointFromEEPROM (void) } } -void Menu::HandleEventPair (Event *ep) +void Menu::parseEvent (Event *ep) { switch(ep->getType()/*EventType*/) { diff --git a/source/shoh/src/threads/manager/Menu.h b/source/shoh/src/threads/manager/Menu.h index e7fdadb..10a19b7 100644 --- a/source/shoh/src/threads/manager/Menu.h +++ b/source/shoh/src/threads/manager/Menu.h @@ -22,7 +22,7 @@ class Menu public: Menu (ThreadCommon::QueueManager* qm); virtual ~Menu (); - void HandleEventPair (Event *ep); + void parseEvent (Event *ep); private: /* Variables and objects */