summaryrefslogtreecommitdiff
path: root/fxbarcode/oned/BC_OneDimWriter.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-09-14 17:59:44 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-09-14 17:59:44 +0000
commit6719c2f8c2e7bb3e28c86f638fb7914af6789285 (patch)
tree85d29f425cfb5c656b733e17ce0aede0486eaa8f /fxbarcode/oned/BC_OneDimWriter.cpp
parent7557e7b0efc01cd2367a37d919f3bbfe50616a28 (diff)
downloadpdfium-6719c2f8c2e7bb3e28c86f638fb7914af6789285.tar.xz
Initialize CBC_OneDimWriter members in the header.
Rearrange them as well. Change-Id: I8653004cd06a4054e32d0148adc1400029ceb34e Reviewed-on: https://pdfium-review.googlesource.com/42459 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxbarcode/oned/BC_OneDimWriter.cpp')
-rw-r--r--fxbarcode/oned/BC_OneDimWriter.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/fxbarcode/oned/BC_OneDimWriter.cpp b/fxbarcode/oned/BC_OneDimWriter.cpp
index 03be25fc35..c76817d138 100644
--- a/fxbarcode/oned/BC_OneDimWriter.cpp
+++ b/fxbarcode/oned/BC_OneDimWriter.cpp
@@ -35,21 +35,9 @@
#include "fxbarcode/BC_Writer.h"
#include "third_party/base/ptr_util.h"
-CBC_OneDimWriter::CBC_OneDimWriter() {
- m_locTextLoc = BC_TEXT_LOC_BELOWEMBED;
- m_bPrintChecksum = true;
- m_iDataLenth = 0;
- m_bCalcChecksum = false;
- m_pFont = nullptr;
- m_fFontSize = 10;
- m_iFontStyle = 0;
- m_fontColor = 0xff000000;
- m_iContentLen = 0;
- m_bLeftPadding = false;
- m_bRightPadding = false;
-}
+CBC_OneDimWriter::CBC_OneDimWriter() = default;
-CBC_OneDimWriter::~CBC_OneDimWriter() {}
+CBC_OneDimWriter::~CBC_OneDimWriter() = default;
void CBC_OneDimWriter::SetPrintChecksum(bool checksum) {
m_bPrintChecksum = checksum;