summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hwpfilter/source/hwpfile.cxx2
-rw-r--r--hwpfilter/source/hwpread.cxx2
-rw-r--r--lotuswordpro/source/filter/bencont.cxx2
3 files changed, 3 insertions, 3 deletions
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)
{