From dcc970aff858d6145b0d080509a63f327d713c93 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 10 Jul 2003 22:52:43 +0000 Subject: [PATCH] compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/timer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/msw/timer.cpp b/src/msw/timer.cpp index 822ece8f35..14c53817f0 100644 --- a/src/msw/timer.cpp +++ b/src/msw/timer.cpp @@ -23,8 +23,6 @@ #if wxUSE_TIMER #ifndef WX_PRECOMP - #include "wx/hashmap.h" - #include "wx/setup.h" #include "wx/window.h" #include "wx/list.h" #include "wx/event.h" @@ -33,6 +31,8 @@ #include "wx/log.h" #endif +#include "wx/hashmap.h" + #include "wx/timer.h" #include "wx/msw/private.h" @@ -42,7 +42,7 @@ // ---------------------------------------------------------------------------- WX_DECLARE_HASH_MAP( long, - wxTimer*, + wxTimer *, wxIntegerHash, wxIntegerEqual, wxTimerMap ); -- 2.45.2