Compile error (no idea why Mingw doesn't like wxPoint())
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4705,7 +4705,7 @@ bool wxWindowMSW::HandleMoving(wxRect& rect)
|
||||
|
||||
bool wxWindowMSW::HandleEnterSizeMove()
|
||||
{
|
||||
wxMoveEvent event(wxPoint(), m_windowId);
|
||||
wxMoveEvent event(wxPoint(0,0), m_windowId);
|
||||
event.SetEventType(wxEVT_MOVE_START);
|
||||
event.SetEventObject(this);
|
||||
|
||||
@@ -4714,7 +4714,7 @@ bool wxWindowMSW::HandleEnterSizeMove()
|
||||
|
||||
bool wxWindowMSW::HandleExitSizeMove()
|
||||
{
|
||||
wxMoveEvent event(wxPoint(), m_windowId);
|
||||
wxMoveEvent event(wxPoint(0,0), m_windowId);
|
||||
event.SetEventType(wxEVT_MOVE_END);
|
||||
event.SetEventObject(this);
|
||||
|
||||
|
Reference in New Issue
Block a user