summaryrefslogtreecommitdiff
path: root/fxbarcode/oned/BC_OneDimWriter.h
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.h
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.h')
-rw-r--r--fxbarcode/oned/BC_OneDimWriter.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/fxbarcode/oned/BC_OneDimWriter.h b/fxbarcode/oned/BC_OneDimWriter.h
index a597d860f6..e25ee58140 100644
--- a/fxbarcode/oned/BC_OneDimWriter.h
+++ b/fxbarcode/oned/BC_OneDimWriter.h
@@ -83,17 +83,20 @@ class CBC_OneDimWriter : public CBC_Writer {
wchar_t Upper(wchar_t ch);
void RenderVerticalBars(int32_t outputX, int32_t width, int32_t height);
- bool m_bPrintChecksum;
- int32_t m_iDataLenth;
- bool m_bCalcChecksum;
+ bool m_bPrintChecksum = true;
+ bool m_bCalcChecksum = false;
+ bool m_bLeftPadding = false;
+ bool m_bRightPadding = false;
+
UnownedPtr<CFX_Font> m_pFont;
- float m_fFontSize;
- int32_t m_iFontStyle;
- uint32_t m_fontColor;
- BC_TEXT_LOC m_locTextLoc;
- size_t m_iContentLen;
- bool m_bLeftPadding;
- bool m_bRightPadding;
+ float m_fFontSize = 10.0f;
+ int32_t m_iFontStyle = 0;
+ uint32_t m_fontColor = 0xff000000;
+ BC_TEXT_LOC m_locTextLoc = BC_TEXT_LOC_BELOWEMBED;
+
+ int32_t m_iDataLenth = 0;
+ size_t m_iContentLen = 0;
+
std::vector<CFX_PathData> m_output;
int32_t m_barWidth;
int32_t m_multiple;