summaryrefslogtreecommitdiff
path: root/svx/source/dialog
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-03 11:08:31 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-03-04 11:34:07 +0000
commit5b04c9063cc9dd77dc55c361df081812af38cdbd (patch)
tree827cd9405e68df853362ac6a021c4619bf4a6bc3 /svx/source/dialog
parentbf48090e0a81c6490ee938eabaef4e791df85229 (diff)
remove unused and commented out code
This code gets never called. Change-Id: I59228cba1444b7b09f74eb5cf8da9b755c7c32f7
Diffstat (limited to 'svx/source/dialog')
-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())