Made UIManager::loadLayoutNodes. There's no reason to no make public this.

( this will enable users to create custom windows from code ).

--HG--
branch : dev
This commit is contained in:
Martí­n Lucas Golini
2017-03-20 00:56:01 -03:00
parent d6084dcc8a
commit a2fd80c7e8

View File

@@ -130,6 +130,8 @@ class EE_API UIManager {
void loadLayoutFromStream( IOStream& stream );
void loadLayoutFromPack( Pack * pack, const std::string& FilePackPath );
void loadLayoutNodes( pugi::xml_node node, UIControl * parent );
protected:
friend class UIControl;
friend class UIWindow;
@@ -178,8 +180,6 @@ class EE_API UIManager {
void addToCloseQueue( UIControl * Ctrl );
void checkClose();
void loadLayoutNodes( pugi::xml_node node, UIControl * parent );
};
}}