From: Robin Dunn Date: Wed, 14 Nov 2001 03:49:02 +0000 (+0000) Subject: A little fix for Vadim's fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/973983be622fcfa9e4387d9eb96f5adf03f2fc7b A little fix for Vadim's fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/msw/popupwin.h b/include/wx/msw/popupwin.h index 14105ab855..297c0e7991 100644 --- a/include/wx/msw/popupwin.h +++ b/include/wx/msw/popupwin.h @@ -40,7 +40,7 @@ protected: // (because we are a child window) wxPopupWindowBase::DoGetPosition(x, y); - GetParent()->DoClientToScreen(x, y); + GetParent()->ClientToScreen(x, y); } };