diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/inc/tools/date.hxx | 2 | ||||
-rw-r--r-- | tools/source/datetime/tdate.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tools/inc/tools/date.hxx b/tools/inc/tools/date.hxx index 42c7c16a6d73..22586c4aaf47 100644 --- a/tools/inc/tools/date.hxx +++ b/tools/inc/tools/date.hxx @@ -131,10 +131,8 @@ public: Date& operator -=( long nDays ); Date& operator ++(); Date& operator --(); -#ifndef MPW33 Date operator ++( int ); Date operator --( int ); -#endif TOOLS_DLLPUBLIC friend Date operator +( const Date& rDate, long nDays ); TOOLS_DLLPUBLIC friend Date operator -( const Date& rDate, long nDays ); diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index d1a6c9461fda..f85e751f1fb8 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -466,7 +466,6 @@ Date& Date::operator --() return *this; } -#ifndef MPW33 Date Date::operator ++( int ) { Date aOldDate = *this; @@ -480,7 +479,6 @@ Date Date::operator --( int ) Date::operator--(); return aOldDate; } -#endif Date operator +( const Date& rDate, long nDays ) { |