From 8ea82c09ff6ffa9f41abc117ddc4eba495cedfb5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 16 Nov 2011 18:27:48 +0000 Subject: [PATCH] Compilation fix for PCH-less build after r69758. Need to include wx/msw/private.h explicitly for wxGetCursorPosMSW() declaration now. Closes #13664 (again). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/uiaction.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/msw/uiaction.cpp b/src/msw/uiaction.cpp index 09ae5f8296..56ea8fa3a9 100644 --- a/src/msw/uiaction.cpp +++ b/src/msw/uiaction.cpp @@ -15,6 +15,10 @@ #if wxUSE_UIACTIONSIMULATOR +#ifndef WX_PRECOMP + #include "wx/msw/private.h" // For wxGetCursorPosMSW() +#endif + #include "wx/uiaction.h" #include "wx/msw/wrapwin.h" -- 2.50.0