From e657520984aaa5445613f54b25f6ee24323e57c5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 2 Nov 1999 19:18:44 +0000 Subject: [PATCH] another compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/tabg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/tabg.cpp b/src/generic/tabg.cpp index c46ff59cd3..2ac60d8afd 100644 --- a/src/generic/tabg.cpp +++ b/src/generic/tabg.cpp @@ -875,8 +875,8 @@ bool wxTabView::OnEvent(wxMouseEvent& event) if (!event.LeftDown()) return FALSE; - long x, y; - event.Position(&x, &y); + wxCoord x, y; + event.GetPosition(&x, &y); wxTabControl *hitControl = (wxTabControl *) NULL; -- 2.45.2