From: Unknown (UG) Date: Sat, 16 Jan 1999 12:52:04 +0000 (+0000) Subject: no message X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a4abc0fc8d0868dfeff7f3aad8b915034290e62d no message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/date.cpp b/src/common/date.cpp index b6adcda77b..3aaf3d2f47 100644 --- a/src/common/date.cpp +++ b/src/common/date.cpp @@ -243,32 +243,32 @@ wxDate &wxDate::operator --(int) // Date comparison ////////////////////////////////////////////////////////////// -bool operator < (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator < (const wxDate &dt1, const wxDate &dt2) { return ( dt1.julian < dt2.julian ); } -bool operator <= (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator <= (const wxDate &dt1, const wxDate &dt2) { return ( (dt1.julian == dt2.julian) || (dt1.julian < dt2.julian) ); } -bool operator > (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator > (const wxDate &dt1, const wxDate &dt2) { return ( dt1.julian > dt2.julian ); } -bool operator >= (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator >= (const wxDate &dt1, const wxDate &dt2) { return ( (dt1.julian == dt2.julian) || (dt1.julian > dt2.julian) ); } -bool operator == (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator == (const wxDate &dt1, const wxDate &dt2) { return ( dt1.julian == dt2.julian ); } -bool operator != (const wxDate &dt1, const wxDate &dt2) +bool WXDLLEXPORT operator != (const wxDate &dt1, const wxDate &dt2) { return ( dt1.julian != dt2.julian ); } @@ -277,7 +277,7 @@ bool operator != (const wxDate &dt1, const wxDate &dt2) // Ostream operations //////////////////////////////////////////////////////////////// -ostream &operator << (ostream &os, const wxDate &dt) +ostream& WXDLLEXPORT operator << (ostream &os, const wxDate &dt) { return os << (const char *) dt.FormatDate(); }