diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-10 18:55:12 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-11 05:08:01 +0000 |
commit | 0f0ebddb81a7c5b83bdf8d050bfe38dad26f0bfd (patch) | |
tree | dd128499869c5f7a7b1a05754af17258f0e32d4a /comphelper | |
parent | c328aefa6f2c9a04c50bad7228a468ff2f136d22 (diff) |
Fix typos
Change-Id: Ic54e808956e5cf4e8079942c0ff799f802cd4b6c
Reviewed-on: https://gerrit.libreoffice.org/35053
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/backupfilehelper.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/comphelper/source/misc/backupfilehelper.cxx b/comphelper/source/misc/backupfilehelper.cxx index 5c65dde32291..7e5c2dbc7ff9 100644 --- a/comphelper/source/misc/backupfilehelper.cxx +++ b/comphelper/source/misc/backupfilehelper.cxx @@ -1869,7 +1869,7 @@ namespace comphelper // ensure dir and file vectors fillDirFileInfo(); - // proccess all files in question recursively + // process all files in question recursively if (!maDirs.empty() || !maFiles.empty()) { bDidPush = tryPush_Files( @@ -1911,7 +1911,7 @@ namespace comphelper // ensure dir and file vectors fillDirFileInfo(); - // proccess all files in question recursively + // process all files in question recursively if (!maDirs.empty() || !maFiles.empty()) { bPopPossible = isPopPossible_files( @@ -1936,7 +1936,7 @@ namespace comphelper // ensure dir and file vectors fillDirFileInfo(); - // proccess all files in question recursively + // process all files in question recursively if (!maDirs.empty() || !maFiles.empty()) { bDidPop = tryPop_files( @@ -2258,7 +2258,7 @@ namespace comphelper bool bDidPush(false); osl::Directory::createPath(rTargetURL); - // proccess files + // process files for (const auto& file : rFiles) { bDidPush |= tryPush_file( @@ -2268,7 +2268,7 @@ namespace comphelper file.second); } - // proccess dirs + // process dirs for (const auto& dir : rDirs) { OUString aNewSourceURL(rSourceURL + "/" + dir); @@ -2339,7 +2339,7 @@ namespace comphelper { bool bPopPossible(false); - // proccess files + // process files for (const auto& file : rFiles) { bPopPossible |= isPopPossible_file( @@ -2349,7 +2349,7 @@ namespace comphelper file.second); } - // proccess dirs + // process dirs for (const auto& dir : rDirs) { OUString aNewSourceURL(rSourceURL + "/" + dir); @@ -2406,7 +2406,7 @@ namespace comphelper { bool bDidPop(false); - // proccess files + // process files for (const auto& file : rFiles) { bDidPop |= tryPop_file( @@ -2416,7 +2416,7 @@ namespace comphelper file.second); } - // proccess dirs + // process dirs for (const auto& dir : rDirs) { OUString aNewSourceURL(rSourceURL + "/" + dir); |