WidgetCallback fix.

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-12-16 22:28:04 -03:00
parent f625e9d98a
commit 2b8cbd41fb
4 changed files with 10 additions and 8 deletions

View File

@@ -17,6 +17,10 @@ class EE_API UIWidgetCreator {
static void removeCustomWidgetCallback( std::string widgetName );
static bool existsCustomWidgetCallback( std::string widgetName );
protected:
typedef std::map<std::string, UIWidgetCreator::CustomWidgetCb> WidgetCallbackMap;
static WidgetCallbackMap widgetCallback;
};
}}