MODIFIED: no more action handler spam.
This commit is contained in:
parent
d38271a1a3
commit
045502d5a3
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ namespace NLGUI
|
|||
/// return pointer to action handler or null if it doesn't exist
|
||||
IActionHandler *getActionHandler(const std::string &name) const
|
||||
{
|
||||
if( name.empty() )
|
||||
return NULL;
|
||||
|
||||
TFactoryMap::const_iterator it = FactoryMap.find(name);
|
||||
if( it == FactoryMap.end() )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue