aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-05-21 18:41:01 +0200
committerGitHub <noreply@github.com>2023-05-21 18:41:01 +0200
commitbbe9f8b83c1e7d42f7e1f5b2ea613dc845a1de7c (patch)
tree89047a76039b7e98fcdd97eac0fa93081c201820 /libqpdf/Pl_Count.cc
parent2028e35928ee8725128f52cae999ac6829dee2fc (diff)
parent49e6365f63f3ad09f04093d421caee04bc042c0d (diff)
downloadqpdf-bbe9f8b83c1e7d42f7e1f5b2ea613dc845a1de7c.tar.zst
Merge pull request #969 from m-holger/tidy
Code formating : drop 'this->' in 'this->m'
Diffstat (limited to 'libqpdf/Pl_Count.cc')
-rw-r--r--libqpdf/Pl_Count.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libqpdf/Pl_Count.cc b/libqpdf/Pl_Count.cc
index 8652678a..cb458f0c 100644
--- a/libqpdf/Pl_Count.cc
+++ b/libqpdf/Pl_Count.cc
@@ -24,8 +24,8 @@ void
Pl_Count::write(unsigned char const* buf, size_t len)
{
if (len) {
- this->m->count += QIntC::to_offset(len);
- this->m->last_char = buf[len - 1];
+ m->count += QIntC::to_offset(len);
+ m->last_char = buf[len - 1];
getNext()->write(buf, len);
}
}
@@ -39,11 +39,11 @@ Pl_Count::finish()
qpdf_offset_t
Pl_Count::getCount() const
{
- return this->m->count;
+ return m->count;
}
unsigned char
Pl_Count::getLastChar() const
{
- return this->m->last_char;
+ return m->last_char;
}