formating

SVN revision: 49399
This commit is contained in:
Andreas Volz 2010-06-02 21:27:33 +00:00
parent fc3106464a
commit 72bca3e91d
1 changed files with 2 additions and 1 deletions

View File

@ -141,8 +141,9 @@ sigc::signal <void, Object&, void*> *Smart::getEventSignal (const std::string &e
addEventSignal (event);
struct CustomEventWrap *cew = mCustomSignalMap[event];
assert (cew);
return cew ? cew->customSignal : NULL; // NULL should never return as one is added always
return cew->customSignal; // one is added always
}
void Smart::callEventSignal (const std::string &event, void *event_info)