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:
Robert Roebling
2007-09-08 18:08:14 +00:00
parent 0766270090
commit 66e2ba91b2

View File

@@ -4705,7 +4705,7 @@ bool wxWindowMSW::HandleMoving(wxRect& rect)
bool wxWindowMSW::HandleEnterSizeMove() bool wxWindowMSW::HandleEnterSizeMove()
{ {
wxMoveEvent event(wxPoint(), m_windowId); wxMoveEvent event(wxPoint(0,0), m_windowId);
event.SetEventType(wxEVT_MOVE_START); event.SetEventType(wxEVT_MOVE_START);
event.SetEventObject(this); event.SetEventObject(this);
@@ -4714,7 +4714,7 @@ bool wxWindowMSW::HandleEnterSizeMove()
bool wxWindowMSW::HandleExitSizeMove() bool wxWindowMSW::HandleExitSizeMove()
{ {
wxMoveEvent event(wxPoint(), m_windowId); wxMoveEvent event(wxPoint(0,0), m_windowId);
event.SetEventType(wxEVT_MOVE_END); event.SetEventType(wxEVT_MOVE_END);
event.SetEventObject(this); event.SetEventObject(this);