X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcb44466c13262aad45c82f13373069dac8ba932..3bcf00abd7aa6b515e776e18b3e295467a693959:/src/common/date.cpp?ds=sidebyside diff --git a/src/common/date.cpp b/src/common/date.cpp index ec7f8d549f..809730cd69 100644 --- a/src/common/date.cpp +++ b/src/common/date.cpp @@ -23,25 +23,19 @@ #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif -#include "wx/setup.h" - #if wxUSE_TIMEDATE #include "wx/date.h" -#include +#include "wx/intl.h" #include #include #include -#if wxUSE_IOSTREAMH -#include -#else -#include -#endif +#include "wx/ioswrap.h" #include #include @@ -276,6 +270,9 @@ bool WXDLLEXPORT operator != (const wxDate &dt1, const wxDate &dt2) return ( dt1.julian != dt2.julian ); } + +#if wxUSE_STD_IOSTREAM + //////////////////////////////////////////////////////////////// // Ostream operations //////////////////////////////////////////////////////////////// @@ -285,6 +282,8 @@ ostream WXDLLEXPORT & operator << (ostream &os, const wxDate &dt) return os << dt.FormatDate().mb_str(); } +#endif + ////////////////////////////////////////////////////////////// // Conversion routines //////////////////////////////////////////////////////////////