wxTinderbox build fix (!PCH support).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-03-12 13:03:40 +00:00
parent 30d5f9f54e
commit 02e05e7e40

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: msw/datectrl.cpp // Name: src/msw/datectrl.cpp
// Purpose: wxDatePickerCtrl implementation // Purpose: wxDatePickerCtrl implementation
// Author: Vadim Zeitlin // Author: Vadim Zeitlin
// Modified by: // Modified by:
@@ -23,23 +23,23 @@
#pragma hdrstop #pragma hdrstop
#endif #endif
#ifndef WX_PRECOMP
#endif
#if wxUSE_DATEPICKCTRL #if wxUSE_DATEPICKCTRL
#include "wx/datectrl.h" #ifndef WX_PRECOMP
#include "wx/app.h" #include "wx/app.h"
#include "wx/intl.h" #include "wx/intl.h"
#include "wx/dcclient.h"
#include "wx/msw/wrapwin.h"
#include "wx/msw/wrapcctl.h"
#include "wx/msw/private.h"
#endif
#include "wx/datectrl.h"
#include "wx/dynlib.h" #include "wx/dynlib.h"
#define _WX_DEFINE_DATE_EVENTS_ #define _WX_DEFINE_DATE_EVENTS_
#include "wx/dateevt.h" #include "wx/dateevt.h"
#include "wx/msw/wrapwin.h"
#include "wx/msw/wrapcctl.h"
#include "wx/msw/private.h"
// apparently some versions of mingw define these macros erroneously // apparently some versions of mingw define these macros erroneously
#ifndef DateTime_GetSystemtime #ifndef DateTime_GetSystemtime
#define DateTime_GetSystemtime DateTime_GetSystemTime #define DateTime_GetSystemtime DateTime_GetSystemTime
@@ -331,4 +331,3 @@ wxDatePickerCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
} }
#endif // wxUSE_DATEPICKCTRL #endif // wxUSE_DATEPICKCTRL