Merging default.

--HG--
branch : gsoc2012-gui-editor
This commit is contained in:
dfighter1985 2013-03-12 07:17:04 +01:00
commit d2fd01393f

View file

@ -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() )
{