summaryrefslogtreecommitdiff
path: root/svx/source/dialog/docrecovery.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/docrecovery.cxx')
-rw-r--r--svx/source/dialog/docrecovery.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx
index 195033bfb488..2d8d4b46bc7e 100644
--- a/svx/source/dialog/docrecovery.cxx
+++ b/svx/source/dialog/docrecovery.cxx
@@ -153,38 +153,6 @@ TURLList* RecoveryCore::getURLListAccess()
}
//===============================================
-sal_Bool RecoveryCore::existsBrokenTempEntries()
-{
- TURLList::const_iterator pIt;
- for ( pIt = m_lURLs.begin();
- pIt != m_lURLs.end() ;
- ++pIt )
- {
- const TURLInfo& rInfo = *pIt;
- if (RecoveryCore::isBrokenTempEntry(rInfo))
- return sal_True;
- }
-
- return sal_False;
-}
-
-//===============================================
-sal_Bool RecoveryCore::existsNonRecoveredEntries()
-{
- TURLList::const_iterator pIt;
- for ( pIt = m_lURLs.begin();
- pIt != m_lURLs.end() ;
- ++pIt )
- {
- const TURLInfo& rInfo = *pIt;
- if (rInfo.RecoveryState == E_NOT_RECOVERED_YET)
- return sal_True;
- }
-
- return sal_False;
-}
-
-//===============================================
sal_Bool RecoveryCore::isBrokenTempEntry(const TURLInfo& rInfo)
{
if (rInfo.TempURL.isEmpty())