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
@@ -74,7 +74,7 @@ iVector2& iVector2::operator += ( const SDL_Rect& other )
return *this;
}
iVector2& iVector2::operator -= (const iVector2& other)
iVector2& iVector2::operator -= ( const iVector2& other )
{
x -= int(other.x);
y -= int(other.y);
@@ -82,7 +82,7 @@ iVector2& iVector2::operator -= (const iVector2& other)
return *this;
}
iVector2& iVector2::operator -= (const SDL_Rect& other)
iVector2& iVector2::operator -= ( const SDL_Rect& other )
{
x -= int(other.x);
y -= int(other.y);
@@ -90,7 +90,7 @@ iVector2& iVector2::operator -= (const SDL_Rect& other)
return *this;
}
iVector2 operator + (const iVector2& lhs, const iVector2& rhs)
iVector2 operator + ( const iVector2& lhs, const iVector2& rhs )
{
iVector2 rs = lhs;
rs += rhs;