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
@@ -21,7 +21,7 @@ iVector3::iVector3( const SDL_Rect& copy )
z = int(copy.w);
}
iVector3& iVector3::operator=( const SDL_Rect& copy )
iVector3& iVector3::operator = ( const SDL_Rect& copy )
{
x = int(copy.x);
y = int(copy.y);
@@ -30,7 +30,7 @@ iVector3& iVector3::operator=( const SDL_Rect& copy )
return *this;
}
bool iVector3::operator==( const SDL_Rect& other ) const
bool iVector3::operator == ( const SDL_Rect& other ) const
{
bool rtn = false;
if ( x == other.x )
@@ -47,7 +47,7 @@ iVector3::iVector3( const Vector3& copy )
z = int(copy.z);
}
iVector3& iVector3::operator=( const Vector3& copy )
iVector3& iVector3::operator = ( const Vector3& copy )
{
x = int(copy.x);
y = int(copy.y);
@@ -56,7 +56,7 @@ iVector3& iVector3::operator=( const Vector3& copy )
return *this;
}
bool iVector3::operator==( const iVector3& other ) const
bool iVector3::operator == ( const iVector3& other ) const
{
bool rtn = false;
if ( x == other.x )