]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/event.cpp
Changed m_font to * GetFont() since m_font isn't in all implementations.
[wxWidgets.git] / src / common / event.cpp
index 14278f5373be5d5de686dcf739b501888a9a38ee..dd13024c2349f5eb2d2695b37f1bb107d0a1f253 100644 (file)
@@ -134,6 +134,11 @@ wxMouseEvent::wxMouseEvent(wxEventType commandType)
   m_altDown = FALSE;
   m_controlDown = FALSE;
   m_shiftDown = FALSE;
+  m_leftDown = FALSE;
+  m_rightDown = FALSE;
+  m_middleDown = FALSE;
+  m_x = 0;
+  m_y = 0;
 }
 
 // True if was a button dclick event (1 = left, 2 = middle, 3 = right)