From 7aa4bc461a171cc2b5a27490a55f0baedd6623fb Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Thu, 23 Aug 2018 17:38:26 +0000 Subject: Remove m_bTruncated flag from CBC_PDF417Writer. The flag is unused. Change-Id: I15eb3e20e6a632ae2aa2afc19cb09d2402e607e0 Reviewed-on: https://pdfium-review.googlesource.com/41031 Commit-Queue: Henrique Nakashima Reviewed-by: Lei Zhang --- xfa/fwl/cfwl_barcode.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'xfa/fwl/cfwl_barcode.h') diff --git a/xfa/fwl/cfwl_barcode.h b/xfa/fwl/cfwl_barcode.h index 58484dfba1..a4991d4cf7 100644 --- a/xfa/fwl/cfwl_barcode.h +++ b/xfa/fwl/cfwl_barcode.h @@ -34,7 +34,6 @@ enum FWL_BCDAttribute { FWL_BCDATTRIBUTE_STARTCHAR = 1 << 8, FWL_BCDATTRIBUTE_ENDCHAR = 1 << 9, FWL_BCDATTRIBUTE_ECLEVEL = 1 << 10, - FWL_BCDATTRIBUTE_TRUNCATED = 1 << 11, }; class CFWL_Barcode : public CFWL_Edit { @@ -68,7 +67,6 @@ class CFWL_Barcode : public CFWL_Edit { void SetStartChar(char startChar); void SetEndChar(char endChar); void SetErrorCorrectionLevel(int32_t ecLevel); - void SetTruncated(bool truncated); private: void GenerateBarcodeImageCache(); @@ -88,7 +86,6 @@ class CFWL_Barcode : public CFWL_Edit { char m_cStartChar; char m_cEndChar; int32_t m_nECLevel; - bool m_bTruncated; uint32_t m_dwAttributeMask; }; -- cgit v1.2.3