summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-12-17 21:39:26 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-12-17 23:57:22 +0100
commit5c0e79f821260f0b72f35af74bb47f7ff91d5954 (patch)
treee95b7c1a4d3eb84493721c8c80452c0874858c53 /tools
parent6e4348d0f60f2b6b3ad71eaa8777ef8f98694298 (diff)
remove unused ifndef
Change-Id: I759d2c7cea6a27fe676d1c1a17586445aa013ee9
Diffstat (limited to 'tools')
-rw-r--r--tools/inc/tools/date.hxx2
-rw-r--r--tools/source/datetime/tdate.cxx2
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 )
{