------------------------------------------------------------------------------------
| 76 | |
| 77 | //------------------------------------------------------------------------------------ |
| 78 | uint CFlashUIEventSystem::GetEventId(const char* sEventName) |
| 79 | { |
| 80 | uint res = 0; |
| 81 | for (TUIEventsLookup::const_iterator iter = m_eventDescriptions.begin(); iter != m_eventDescriptions.end(); ++iter) |
| 82 | { |
| 83 | if (strcmp((*iter)->sName, sEventName) == 0) |
| 84 | return res; |
| 85 | ++res; |
| 86 | } |
| 87 | return ~0; |
| 88 | } |
| 89 | |
| 90 | //------------------------------------------------------------------- |
| 91 | void CFlashUIEventSystem::GetMemoryUsage(ICrySizer* s) const |
no test coverage detected