From a2fd80c7e8edfaefd7ede0d7fae6ce7304f8a72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=C2=ADn=20Lucas=20Golini?= Date: Mon, 20 Mar 2017 00:56:01 -0300 Subject: [PATCH] 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 --- include/eepp/ui/uimanager.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/eepp/ui/uimanager.hpp b/include/eepp/ui/uimanager.hpp index 024a0dddb..23a9dc7c5 100644 --- a/include/eepp/ui/uimanager.hpp +++ b/include/eepp/ui/uimanager.hpp @@ -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 ); }; }}