summaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
diff options
context:
space:
mode:
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;
}