summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/calendarwrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/i18n/calendarwrapper.cxx')
-rw-r--r--unotools/source/i18n/calendarwrapper.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/unotools/source/i18n/calendarwrapper.cxx b/unotools/source/i18n/calendarwrapper.cxx
index 2f861fb1ee1a..56695abf01bc 100644
--- a/unotools/source/i18n/calendarwrapper.cxx
+++ b/unotools/source/i18n/calendarwrapper.cxx
@@ -122,41 +122,6 @@ double CalendarWrapper::getDateTime() const
return 0.0;
}
-sal_Int32 CalendarWrapper::getCombinedOffsetInMillis(
- sal_Int16 nParentFieldIndex, sal_Int16 nChildFieldIndex ) const
-{
- sal_Int32 nOffset = 0;
- try
- {
- if ( xC.is() )
- {
- nOffset = static_cast<sal_Int32>( xC->getValue( nParentFieldIndex )) * 60000;
- sal_Int16 nSecondMillis = xC->getValue( nChildFieldIndex );
- if (nOffset < 0)
- nOffset -= static_cast<sal_uInt16>( nSecondMillis);
- else
- nOffset += static_cast<sal_uInt16>( nSecondMillis);
- }
- }
- catch (const Exception& e)
- {
- SAL_WARN( "unotools.i18n", "getCombinedOffsetInMillis: Exception caught " << e.Message );
- }
- return nOffset;
-}
-
-sal_Int32 CalendarWrapper::getZoneOffsetInMillis() const
-{
- return getCombinedOffsetInMillis( CalendarFieldIndex::ZONE_OFFSET,
- CalendarFieldIndex::ZONE_OFFSET_SECOND_MILLIS);
-}
-
-sal_Int32 CalendarWrapper::getDSTOffsetInMillis() const
-{
- return getCombinedOffsetInMillis( CalendarFieldIndex::DST_OFFSET,
- CalendarFieldIndex::DST_OFFSET_SECOND_MILLIS);
-}
-
void CalendarWrapper::setLocalDateTime( double fTimeInDays )
{
try