[Libreoffice-commits] core.git: hwpfilter/source lotuswordpro/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jul 19 17:49:45 UTC 2021
hwpfilter/source/hwpfile.cxx | 2 +-
hwpfilter/source/hwpread.cxx | 2 +-
lotuswordpro/source/filter/bencont.cxx | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 3cbdff0a01aa353f281e8d05277b52c09444944f
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Jul 18 23:16:13 2021 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Jul 19 19:49:09 2021 +0200
Fix typo
Change-Id: I8babf7975eb3b8f3e43f72572e75cbf46f510b20
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119147
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/hwpfilter/source/hwpfile.cxx b/hwpfilter/source/hwpfile.cxx
index 762bb31d0582..3f67111691c4 100644
--- a/hwpfilter/source/hwpfile.cxx
+++ b/hwpfilter/source/hwpfile.cxx
@@ -361,7 +361,7 @@ void HWPFile::TagsRead()
_hwpInfo.back_info.data.clear();
- //read potentially compressed data in blocks as its more
+ //read potentially compressed data in blocks as it's more
//likely large values are simply broken and we'll run out
//of data before we need to realloc
for (int i = 0; i < _hwpInfo.back_info.size; i+= SAL_MAX_UINT16)
diff --git a/hwpfilter/source/hwpread.cxx b/hwpfilter/source/hwpread.cxx
index be8cdc7bb82d..45d156b00399 100644
--- a/hwpfilter/source/hwpread.cxx
+++ b/hwpfilter/source/hwpread.cxx
@@ -469,7 +469,7 @@ bool Picture::Read(HWPFile & hwpf)
{
follow.clear();
- //read potentially compressed data in blocks as its more
+ //read potentially compressed data in blocks as it's more
//likely large values are simply broken and we'll run out
//of data before we need to realloc
for (size_t i = 0; i < follow_block_size; i+= SAL_N_ELEMENTS(hwpf.scratch))
diff --git a/lotuswordpro/source/filter/bencont.cxx b/lotuswordpro/source/filter/bencont.cxx
index a7d1a5727875..b5648a64b3ec 100644
--- a/lotuswordpro/source/filter/bencont.cxx
+++ b/lotuswordpro/source/filter/bencont.cxx
@@ -248,7 +248,7 @@ namespace
{
void readDataInBlocks(SvStream& rSt, sal_uInt64 nDLen, std::vector<sal_uInt8>& rData)
{
- //read data in blocks as its more likely large values are simply broken
+ //read data in blocks as it's more likely large values are simply broken
//and we'll run out of data before we need to realloc
for (sal_uInt64 i = 0; i < nDLen; i+= SAL_MAX_UINT16)
{
More information about the Libreoffice-commits
mailing list