remove Refrens from GUI enum

This commit is contained in:
2018-08-30 11:50:19 -04:00
parent 2c41974460
commit 05ffe20bb4
14 changed files with 48 additions and 48 deletions
@@ -66,7 +66,7 @@ const bool cGUI::Initialize( const cString& filename, const cString& dir /*= ""*
return rtn;
}
void cGUI::Event( const MathEngine::iVector2& location, const eGUIEventType& type )
void cGUI::Event( const MathEngine::iVector2& location, const eGUIEventType type )
{
location;
type;
@@ -154,7 +154,7 @@ void cGUI::setPadding( const unsigned int top /*= 5*/, const unsigned int right
setPadding(GUIHelpers::Padding(top, right, bottom, left));
}
void cGUI::setAlign( const GUIHelpers::eAlign& align /*= GUIHelpers::eAlign::CENTER*/ )
void cGUI::setAlign( const GUIHelpers::eAlign align /*= GUIHelpers::eAlign::CENTER*/ )
{
//cWindow::sALIGN = align;
}
@@ -196,7 +196,7 @@ void cGUI::getPadding( unsigned int& top, unsigned int& right, unsigned int& bot
// left = cWindow::sPADDING.w;
}
const GUIHelpers::eAlign& cGUI::getAlign() const
const GUIHelpers::eAlign cGUI::getAlign() const
{
/*return cWindow::sALIGN;*/
return GUIHelpers::eAlign::CENTER;