BoxSizer to Sizer

This commit is contained in:
2018-08-15 22:04:06 -04:00
parent 353dc21750
commit bd3c111fa1
67 changed files with 369 additions and 308 deletions
@@ -55,17 +55,18 @@ const bool cGUI::Initialize( const cString& filename, const cString& dir /*= ""*
bool rtn = IsInit();
GUIHelpers::cXMLoader xml;
xml.Load(filename, dir);
rtn = xml.Load(filename, dir);
//GUIHelpers::cXMLoader::Inst().Load(filename, dir);
// if (rtn == false) {
// setFont( filename, dir, size );
// cUtility::Inst().Message("GUI initialized.");
// }
m_inited = rtn;
return rtn;
}
void cGUI::Event(const MathEngine::iVector2& location, const eGUIEventType& type)
void cGUI::Event( const MathEngine::iVector2& location, const eGUIEventType& type )
{
location;
type;
@@ -112,7 +113,7 @@ void cGUI::Display()
}
/// Sets
void cGUI::setDebugLevel(const unsigned long int debugLevel)
void cGUI::setDebugLevel( const unsigned long int debugLevel )
{
m_debugLevel = debugLevel;
}