projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxSizerFlags name fix, accessors only available to wxSizer (supposively :))
[wxWidgets.git]
/
src
/
common
/
geometry.cpp
diff --git
a/src/common/geometry.cpp
b/src/common/geometry.cpp
index 6c171e73a544bc7eaf16f6a17c3b564c840e256e..b78f2e79ee6dc2777b8f7619252e974f1b031cdb 100644
(file)
--- a/
src/common/geometry.cpp
+++ b/
src/common/geometry.cpp
@@
-9,7
+9,7
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if
def __GNUG__
+#if
defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "geometry.cpp"
#endif
#pragma implementation "geometry.cpp"
#endif
@@
-57,9
+57,9
@@
bool wxRect2DDouble::Intersects( const wxRect2DDouble &rect ) const
if ( left < right && top < bottom )
{
if ( left < right && top < bottom )
{
- return
TRUE
;
+ return
true
;
}
}
- return
FALSE
;
+ return
false
;
}
void wxRect2DDouble::Intersect( const wxRect2DDouble &src1 , const wxRect2DDouble &src2 , wxRect2DDouble *dest )
}
void wxRect2DDouble::Intersect( const wxRect2DDouble &src1 , const wxRect2DDouble &src2 , wxRect2DDouble *dest )
@@
-145,6
+145,15
@@
void wxRect2DDouble::ConstrainTo( const wxRect2DDouble &rect )
SetTop( rect.GetTop() );
}
SetTop( rect.GetTop() );
}
+wxRect2DDouble& wxRect2DDouble::operator=( const wxRect2DDouble &r )
+{
+ m_x = r.m_x;
+ m_y = r.m_y;
+ m_width = r.m_width;
+ m_height = r.m_height;
+ return *this;
+}
+
// integer version
// for the following calculations always remember
// integer version
// for the following calculations always remember
@@
-243,9
+252,9
@@
bool wxRect2DInt::Intersects( const wxRect2DInt &rect ) const
if ( left < right && top < bottom )
{
if ( left < right && top < bottom )
{
- return
TRUE
;
+ return
true
;
}
}
- return
FALSE
;
+ return
false
;
}
void wxRect2DInt::Intersect( const wxRect2DInt &src1 , const wxRect2DInt &src2 , wxRect2DInt *dest )
}
void wxRect2DInt::Intersect( const wxRect2DInt &src1 , const wxRect2DInt &src2 , wxRect2DInt *dest )