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
@@ -26,7 +26,7 @@ iVector4::iVector4( const SDL_Rect& copy )
w = int(copy.h);
}
iVector4& iVector4::operator=( const SDL_Rect& copy )
iVector4& iVector4::operator = ( const SDL_Rect& copy )
{
x = int(copy.x);
y = int(copy.y);
@@ -36,7 +36,7 @@ iVector4& iVector4::operator=( const SDL_Rect& copy )
return *this;
}
bool iVector4::operator==( const SDL_Rect& other ) const
bool iVector4::operator == ( const SDL_Rect& other ) const
{
bool rtn = false;
if ( x == other.x )
@@ -55,7 +55,7 @@ iVector4::iVector4( const Vector4& copy )
w = int(copy.w);
}
iVector4& iVector4::operator=( const Vector4& copy )
iVector4& iVector4::operator = ( const Vector4& copy )
{
x = int(copy.x);
y = int(copy.y);
@@ -65,7 +65,7 @@ iVector4& iVector4::operator=( const Vector4& copy )
return *this;
}
bool iVector4::operator==( const iVector4& other ) const
bool iVector4::operator == ( const iVector4& other ) const
{
bool rtn = false;
if ( x == other.x )