summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/backupfilehelper.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-01-23 16:45:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-01-25 13:51:24 +0100
commit0f28c8612f4269cec95688b53d182c7c0169236d (patch)
treed840fa85243c10376fc4fb60b4972c028953483a /comphelper/source/misc/backupfilehelper.cxx
parent8fd13c356d78fb72ba5dd288a495551f23e15363 (diff)
loplugin:unused-returns in basegfx..cppcanvas
Change-Id: I32dc8c92871c8349651d2f4204a332d387e6e1b2 Reviewed-on: https://gerrit.libreoffice.org/48428 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper/source/misc/backupfilehelper.cxx')
-rw-r--r--comphelper/source/misc/backupfilehelper.cxx24
1 files changed, 6 insertions, 18 deletions
diff --git a/comphelper/source/misc/backupfilehelper.cxx b/comphelper/source/misc/backupfilehelper.cxx
index 64a8cea73929..9b8003edf161 100644
--- a/comphelper/source/misc/backupfilehelper.cxx
+++ b/comphelper/source/misc/backupfilehelper.cxx
@@ -1834,10 +1834,8 @@ namespace comphelper
}
}
- bool BackupFileHelper::tryPush()
+ void BackupFileHelper::tryPush()
{
- bool bDidPush(false);
-
// no push when SafeModeDir exists, it may be Office's exit after SafeMode
// where SafeMode flag is already deleted, but SafeModeDir cleanup is not
// done yet (is done at next startup)
@@ -1851,21 +1849,17 @@ namespace comphelper
// process all files in question recursively
if (!maDirs.empty() || !maFiles.empty())
{
- bDidPush = tryPush_Files(
+ tryPush_Files(
maDirs,
maFiles,
maUserConfigWorkURL,
aPackURL);
}
}
-
- return bDidPush;
}
- bool BackupFileHelper::tryPushExtensionInfo()
+ void BackupFileHelper::tryPushExtensionInfo()
{
- bool bDidPush(false);
-
// no push when SafeModeDir exists, it may be Office's exit after SafeMode
// where SafeMode flag is already deleted, but SafeModeDir cleanup is not
// done yet (is done at next startup)
@@ -1873,10 +1867,8 @@ namespace comphelper
{
const OUString aPackURL(getPackURL());
- bDidPush = tryPush_extensionInfo(aPackURL);
+ tryPush_extensionInfo(aPackURL);
}
-
- return bDidPush;
}
bool BackupFileHelper::isPopPossible()
@@ -1904,7 +1896,7 @@ namespace comphelper
return bPopPossible;
}
- bool BackupFileHelper::tryPop()
+ void BackupFileHelper::tryPop()
{
bool bDidPop(false);
@@ -1931,8 +1923,6 @@ namespace comphelper
osl::Directory::remove(aPackURL);
}
}
-
- return bDidPop;
}
bool BackupFileHelper::isPopPossibleExtensionInfo() const
@@ -1949,7 +1939,7 @@ namespace comphelper
return bPopPossible;
}
- bool BackupFileHelper::tryPopExtensionInfo()
+ void BackupFileHelper::tryPopExtensionInfo()
{
bool bDidPop(false);
@@ -1965,8 +1955,6 @@ namespace comphelper
osl::Directory::remove(aPackURL);
}
}
-
- return bDidPop;
}
bool BackupFileHelper::isTryDisableAllExtensionsPossible()