From cfeb83fd7f4b8903b09f7d233a6d3b7edb57ca9e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 2 Nov 1999 18:48:40 +0000 Subject: [PATCH] another compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/sashwin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/sashwin.cpp b/src/generic/sashwin.cpp index 18b56afa7b..df44939ecb 100644 --- a/src/generic/sashwin.cpp +++ b/src/generic/sashwin.cpp @@ -109,8 +109,8 @@ void wxSashWindow::OnPaint(wxPaintEvent& WXUNUSED(event)) void wxSashWindow::OnMouseEvent(wxMouseEvent& event) { - long x, y; - event.Position(&x, &y); + wxCoord x, y; + event.GetPosition(&x, &y); wxSashEdgePosition sashHit = SashHitTest(x, y); -- 2.47.2