diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-05 08:46:13 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-05 08:46:13 -0800 |
commit | 5570d23890cc7bae4903a29fbcf8ac543ba1a2c7 (patch) | |
tree | 9077948b2f9c187ecc3df125e79a1610db5ce1b7 /xfa/include | |
parent | cd39695e618374ae0cfb4d3467602fd9a5365c55 (diff) | |
download | pdfium-5570d23890cc7bae4903a29fbcf8ac543ba1a2c7.tar.xz |
Fix XFA compilation warnings, part 2
Mostly unused variables, unused private members, or
initialization order. Added a few missing initializers
for pointer members along the way.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1414903004 .
Diffstat (limited to 'xfa/include')
-rw-r--r-- | xfa/include/fxbarcode/BC_BarCode.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/xfa/include/fxbarcode/BC_BarCode.h b/xfa/include/fxbarcode/BC_BarCode.h index 96625af0af..17d9be5cc5 100644 --- a/xfa/include/fxbarcode/BC_BarCode.h +++ b/xfa/include/fxbarcode/BC_BarCode.h @@ -132,9 +132,6 @@ class CBC_Codabar : public CBC_OneCode { CFX_WideString m_renderContents;
};
class CBC_Code128 : public CBC_OneCode {
- private:
- BC_TYPE m_type;
-
public:
CBC_Code128(BC_TYPE type);
virtual ~CBC_Code128();
|