summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-16 23:06:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-17 09:54:13 +0100
commit7acd9e2c28911003511de641cfd18b86bde7d808 (patch)
tree17d19f4778f0df9a9557d827ea0b6b43757750ec /sot
parent9b845e5814ba8f251986494bed4ec3c64bddcfd3 (diff)
callcatcher: remove some methods
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/stgelem.cxx13
-rw-r--r--sot/source/sdstor/stgelem.hxx2
2 files changed, 0 insertions, 15 deletions
diff --git a/sot/source/sdstor/stgelem.cxx b/sot/source/sdstor/stgelem.cxx
index bfde32ade4c0..efbbc21d40bb 100644
--- a/sot/source/sdstor/stgelem.cxx
+++ b/sot/source/sdstor/stgelem.cxx
@@ -318,19 +318,6 @@ void StgEntry::SetLeaf( StgEntryRef eRef, sal_Int32 nPage )
}
}
-const sal_Int32* StgEntry::GetTime( StgEntryTime eTime ) const
-{
- return( eTime == STG_MODIFIED ) ? nMtime : nAtime;
-}
-
-void StgEntry::SetTime( StgEntryTime eTime, sal_Int32* pTime )
-{
- if( eTime == STG_MODIFIED )
- nMtime[ 0 ] = *pTime++, nMtime[ 1 ] = *pTime;
- else
- nAtime[ 0 ] = *pTime++, nAtime[ 1 ] = *pTime;
-}
-
void StgEntry::SetClassId( const ClsId& r )
{
memcpy( &aClsId, &r, sizeof( ClsId ) );
diff --git a/sot/source/sdstor/stgelem.hxx b/sot/source/sdstor/stgelem.hxx
index 7ef8c4772f36..e4e839ca33b5 100644
--- a/sot/source/sdstor/stgelem.hxx
+++ b/sot/source/sdstor/stgelem.hxx
@@ -152,8 +152,6 @@ public:
void SetClassId( const ClsId& );
sal_Int32 GetLeaf( StgEntryRef ) const;
void SetLeaf( StgEntryRef, sal_Int32 );
- const sal_Int32* GetTime( StgEntryTime ) const;
- void SetTime( StgEntryTime, sal_Int32* );
};