From: Vadim Zeitlin Date: Sun, 26 Apr 2009 19:12:01 +0000 (+0000) Subject: add missing wx/module.h header to fix PCH-less build (closes #10743) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0e16e5c3b40ea20f14e66ac7530766fac19aa983 add missing wx/module.h header to fix PCH-less build (closes #10743) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index cbe60a28fb..a82534c492 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -27,6 +27,7 @@ #include "wx/intl.h" #include "wx/log.h" #include "wx/hashmap.h" + #include "wx/module.h" #endif #include "wx/msw/private.h" @@ -53,7 +54,7 @@ static wxTimerMap& TimerMap() // ---------------------------------------------------------------------------- // private functions // ---------------------------------------------------------------------------- - + LRESULT APIENTRY _EXPORT wxTimerWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);