From 85d784952f8a7c4d8c9e614663ebc5b1eb747384 Mon Sep 17 00:00:00 2001 From: m-holger Date: Sun, 21 May 2023 14:42:34 +0100 Subject: Globally replace 'this->m->' with 'm->' Using search and replace. --- libqpdf/Pl_Count.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libqpdf/Pl_Count.cc') 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; } -- cgit v1.2.3-54-g00ecf