another compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-11-02 18:48:40 +00:00
parent af8ec91907
commit cfeb83fd7f

View File

@ -109,8 +109,8 @@ void wxSashWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
void wxSashWindow::OnMouseEvent(wxMouseEvent& event) void wxSashWindow::OnMouseEvent(wxMouseEvent& event)
{ {
long x, y; wxCoord x, y;
event.Position(&x, &y); event.GetPosition(&x, &y);
wxSashEdgePosition sashHit = SashHitTest(x, y); wxSashEdgePosition sashHit = SashHitTest(x, y);