diff options
Diffstat (limited to 'xfa/fxbarcode/common/BC_CommonDecoderResult.cpp')
-rw-r--r-- | xfa/fxbarcode/common/BC_CommonDecoderResult.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp index 45aff1cae1..ee131e5359 100644 --- a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp +++ b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp @@ -40,7 +40,7 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, m_text = text; m_byteSegments.Copy(byteSegments); m_ecLevel = ecLevel; - m_other = NULL; + m_other = nullptr; } void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, const CFX_ByteString& text, @@ -53,7 +53,7 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, m_rawBytes.Copy(rawBytes); m_text = text; m_pdf417ecLevel = ecLevel; - m_other = NULL; + m_other = nullptr; } void CBC_CommonDecoderResult::setOther(CBC_PDF417ResultMetadata* other) { m_other = other; |