aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-21 15:42:34 +0200
committerm-holger <m-holger@kubitscheck.org>2023-05-21 15:42:34 +0200
commit85d784952f8a7c4d8c9e614663ebc5b1eb747384 (patch)
treeb2954d6afa41dc1b4d776084bc31222523865665 /libqpdf/Pl_Count.cc
parent2028e35928ee8725128f52cae999ac6829dee2fc (diff)
downloadqpdf-85d784952f8a7c4d8c9e614663ebc5b1eb747384.tar.zst
Globally replace 'this->m->' with 'm->'
Using search and replace.
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;
}