]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected code for doubles
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 5 Sep 2002 12:42:16 +0000 (12:42 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 5 Sep 2002 12:42:16 +0000 (12:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/geometry.h

index c332ec0d5bc2bbfd81df0d1c8a211aa0df8a2f14..dacbdd62032a3d6b4323d8bfc2145ba5b6fe1312 100644 (file)
@@ -585,9 +585,9 @@ public:
         { m_x += pt.m_x - (m_x+m_width/2) , m_y += pt.m_y -(m_y+m_height/2); }
     inline wxOutCode GetOutCode( const wxPoint2DDouble &pt ) const
         { return (wxOutCode) (( ( pt.m_x < m_x ) ? wxOutLeft : 0 ) +
-                     ( ( pt.m_x >= m_x + m_width ) ? wxOutRight : 0 ) +
+                     ( ( pt.m_x > m_x + m_width ) ? wxOutRight : 0 ) +
                      ( ( pt.m_y < m_y ) ? wxOutTop : 0 )  +
-                     ( ( pt.m_y >= m_y + m_height ) ? wxOutBottom : 0 )); }
+                     ( ( pt.m_y > m_y + m_height ) ? wxOutBottom : 0 )); }
        inline wxOutCode GetOutcode(const wxPoint2DDouble &pt) const
                { return GetOutCode(pt) ; }
     inline bool Contains( const wxPoint2DDouble &pt ) const