remove Refrens from GUI enum
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user