aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFObjectHandle.hh
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-05-20 13:46:50 +0200
committerm-holger <m-holger@kubitscheck.org>2023-05-20 16:41:36 +0200
commitd0682f0f609e979ba085d93a1a0d8e0559f739bb (patch)
tree53d0ef2d0be8ee1167c8a59f86bda1b3cdba7f53 /include/qpdf/QPDFObjectHandle.hh
parente28f4efb00d5040fa71532d76e63aa7ade105c99 (diff)
downloadqpdf-d0682f0f609e979ba085d93a1a0d8e0559f739bb.tar.zst
Use nullptr instead of 0 or NULL
Diffstat (limited to 'include/qpdf/QPDFObjectHandle.hh')
-rw-r--r--include/qpdf/QPDFObjectHandle.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qpdf/QPDFObjectHandle.hh b/include/qpdf/QPDFObjectHandle.hh
index ee424e39..198ca42e 100644
--- a/include/qpdf/QPDFObjectHandle.hh
+++ b/include/qpdf/QPDFObjectHandle.hh
@@ -526,7 +526,7 @@ class QPDFObjectHandle
QPDF_DLL
void parsePageContents(ParserCallbacks* callbacks);
QPDF_DLL
- void filterPageContents(TokenFilter* filter, Pipeline* next = 0);
+ void filterPageContents(TokenFilter* filter, Pipeline* next = nullptr);
// See comments for QPDFPageObjectHelper::pipeContents.
QPDF_DLL
void pipePageContents(Pipeline* p);
@@ -538,7 +538,7 @@ class QPDFObjectHandle
// contents. This can be used to apply a TokenFilter to a form
// XObject, whose data is in the same format as a content stream.
QPDF_DLL
- void filterAsContents(TokenFilter* filter, Pipeline* next = 0);
+ void filterAsContents(TokenFilter* filter, Pipeline* next = nullptr);
// Called on a stream to parse the stream as page contents. This
// can be used to parse a form XObject.
QPDF_DLL