]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/geometry.h
declare the wx2os2PenStyle helper in the header.
[wxWidgets.git] / include / wx / geometry.h
index c14279c9711a4de9b464b0a595819cec8032a8a3..62dd5aaadeabc23c24be72a6aac1701234853945 100644 (file)
@@ -182,15 +182,15 @@ inline wxPoint2DDouble& wxPoint2DDouble::operator-=(const wxPoint2DDouble& pt)
 
 inline wxPoint2DDouble& wxPoint2DDouble::operator*=(const wxPoint2DDouble& pt) 
 { 
-    m_x = m_x + pt.m_x ; 
-    m_y = m_y + pt.m_y; 
+    m_x = m_x * pt.m_x ; 
+    m_y = m_y * pt.m_y; 
     return *this ;
 }
 
 inline wxPoint2DDouble& wxPoint2DDouble::operator/=(const wxPoint2DDouble& pt) 
 { 
-    m_x = m_x - pt.m_x ; 
-    m_y = m_y - pt.m_y;
+    m_x = m_x / pt.m_x ; 
+    m_y = m_y / pt.m_y;
     return *this ;
 }