summaryrefslogtreecommitdiff
path: root/testshl2
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-07-29 12:02:19 +0000
committerRüdiger Timm <rt@openoffice.org>2003-07-29 12:02:19 +0000
commit1368e7a93c3ada248805bf24368858a1dc72e70f (patch)
tree28f434d50628f3d12d37fb67c4763c1dd24c8c82 /testshl2
parentd2da83b05c6d4bdd3dea78924e44f597fc9f0dcc (diff)
#100000# Conditionals '#if SUPD < 669' removed.
Diffstat (limited to 'testshl2')
-rw-r--r--testshl2/source/versionhelper.cxx28
1 files changed, 2 insertions, 26 deletions
diff --git a/testshl2/source/versionhelper.cxx b/testshl2/source/versionhelper.cxx
index 45a25a3f8054..f07e5a4fe480 100644
--- a/testshl2/source/versionhelper.cxx
+++ b/testshl2/source/versionhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: versionhelper.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2003-04-01 13:17:18 $
+ * last change: $Author: rt $ $Date: 2003-07-29 13:02:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -106,51 +106,27 @@ bool VersionHelper::isOk() const
rtl::OString VersionHelper::getTime() const
{
-#if SUPD < 669
return m_pInfo->pTime;
-#else
- return m_pInfo->aTime;
-#endif
}
rtl::OString VersionHelper::getDate() const
{
-#if SUPD < 669
return m_pInfo->pDate;
-#else
- return m_pInfo->aDate;
-#endif
}
rtl::OString VersionHelper::getUpd() const
{
-#if SUPD < 669
return m_pInfo->pUpd;
-#else
- return m_pInfo->aUpd;
-#endif
}
rtl::OString VersionHelper::getMinor() const
{
-#if SUPD < 669
return m_pInfo->pMinor;
-#else
- return m_pInfo->aMinor;
-#endif
}
rtl::OString VersionHelper::getBuild() const
{
-#if SUPD < 669
return m_pInfo->pBuild;
-#else
- return m_pInfo->aBuild;
-#endif
}
rtl::OString VersionHelper::getInpath() const
{
-#if SUPD < 669
return m_pInfo->pInpath;
-#else
- return m_pInfo->aInpath;
-#endif
}