diff options
author | tsepez <tsepez@chromium.org> | 2016-04-28 15:16:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-28 15:16:51 -0700 |
commit | 33a747db5c9ce18bdfaaaaea17b03ef26d14ff54 (patch) | |
tree | 9d8249844ea44f432891ffa67d7bca51bdb1f033 /xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp | |
parent | 18713d20e080c344e0ed09e3f0ac5bacb0645fc5 (diff) | |
download | pdfium-33a747db5c9ce18bdfaaaaea17b03ef26d14ff54.tar.xz |
Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, Part 5
Remove unused m_pdf417byteSegments, which was coped into from
an empty array and never again referenced.
Review-Url: https://codereview.chromium.org/1927253002
Diffstat (limited to 'xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp')
-rw-r--r-- | xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp index 25dc28b3f3..63b3ab790d 100644 --- a/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp +++ b/xfa/fxbarcode/qrcode/BC_FinderPatternInfo.cpp @@ -24,18 +24,23 @@ #include "xfa/fxbarcode/qrcode/BC_FinderPatternInfo.h" #include "xfa/fxbarcode/qrcode/BC_QRFinderPattern.h" -CBC_QRFinderPatternInfo::CBC_QRFinderPatternInfo(CFX_PtrArray* patternCenters) { - m_bottomLeft = (CBC_QRFinderPattern*)(*patternCenters)[0]; - m_topLeft = (CBC_QRFinderPattern*)(*patternCenters)[1]; - m_topRight = (CBC_QRFinderPattern*)(*patternCenters)[2]; +CBC_QRFinderPatternInfo::CBC_QRFinderPatternInfo( + CFX_ArrayTemplate<CBC_QRFinderPattern*>* patternCenters) { + m_bottomLeft = (*patternCenters)[0]; + m_topLeft = (*patternCenters)[1]; + m_topRight = (*patternCenters)[2]; } + CBC_QRFinderPatternInfo::~CBC_QRFinderPatternInfo() {} -CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetBottomLeft() { + +CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetBottomLeft() const { return m_bottomLeft; } -CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopLeft() { + +CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopLeft() const { return m_topLeft; } -CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopRight() { + +CBC_QRFinderPattern* CBC_QRFinderPatternInfo::GetTopRight() const { return m_topRight; } |