BoxSizer to Sizer

This commit is contained in:
2018-08-15 22:04:06 -04:00
parent 353dc21750
commit bd3c111fa1
67 changed files with 369 additions and 308 deletions
@@ -86,12 +86,12 @@ void cEventControl::CheckEvents()
}
}
void cEventControl::AddEvent(EventEngine::cEvent* event)
void cEventControl::AddEvent( EventEngine::cEvent* event )
{
m_children.push_back(event);
}
const bool cEventControl::RemoveEvent(EventEngine::cEvent* event)
const bool cEventControl::RemoveEvent( EventEngine::cEvent* event )
{
bool rtn = false;
std::vector<EventEngine::cEvent*>::iterator it;