if (listenerType == _UI_LISTENER_POST)
{
+ SysTryReturn(NID_UI, __pPostEventListenerMap, null, E_OBJ_NOT_FOUND, "[E_OBJ_NOT_FOUND] PostEventListenerMap is null.");
__pPostEventListenerMap->GetValue(eventType, pEventListeners);
}
else if (listenerType == _UI_LISTENER_TARGET_POST)
{
+ SysTryReturn(NID_UI, __pTargetPostEventListenerMap, null, E_OBJ_NOT_FOUND, "[E_OBJ_NOT_FOUND] TargetPostEventListenerMap is null.");
__pTargetPostEventListenerMap->GetValue(eventType, pEventListeners);
}
else
{
result r = E_SUCCESS;
+ SysTryReturn(NID_UI, __pEventListenerMap, null, E_OBJ_NOT_FOUND, "[E_OBJ_NOT_FOUND] EventListenerMap is null.");
r = __pEventListenerMap->GetValue(eventType, pEventListeners);
SysTryReturn(NID_UI, r == E_SUCCESS, null, r, "[%s] Propagating.", GetErrorMessage(r));
}