Fix accidental use of comma operator in wxMouseState

Replace an accidental comma with the semicolon, which is what should have been
used here since the beginning (even though comma actually did do the same
thing).
This commit is contained in:
orbitcowboy
2017-05-24 17:29:25 +02:00
committed by VZ
parent 0fd3845141
commit aa56419ea8

View File

@@ -110,7 +110,7 @@ public:
// these functions are mostly used by wxWidgets itself // these functions are mostly used by wxWidgets itself
void SetX(wxCoord x) { m_x = x; } void SetX(wxCoord x) { m_x = x; }
void SetY(wxCoord y) { m_y = y; } void SetY(wxCoord y) { m_y = y; }
void SetPosition(wxPoint pos) { m_x = pos.x, m_y = pos.y; } void SetPosition(wxPoint pos) { m_x = pos.x; m_y = pos.y; }
void SetLeftDown(bool down) { m_leftDown = down; } void SetLeftDown(bool down) { m_leftDown = down; }
void SetMiddleDown(bool down) { m_middleDown = down; } void SetMiddleDown(bool down) { m_middleDown = down; }