Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: xfa/fwl/core/cfwl_barcode.cpp

Issue 2502653002: Cleanup remaining IFWL files for visiblity and usage. (Closed)
Patch Set: Review cleanup Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fwl/core/cfwl_barcode.h ('k') | xfa/fwl/core/cfwl_checkbox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fwl/core/cfwl_barcode.cpp
diff --git a/xfa/fwl/core/cfwl_barcode.cpp b/xfa/fwl/core/cfwl_barcode.cpp
index 053826d6b7ca1350b84eeeb8af38d04187705879..ef3ae4036d3789241d61def3c99e61122f7e31d3 100644
--- a/xfa/fwl/core/cfwl_barcode.cpp
+++ b/xfa/fwl/core/cfwl_barcode.cpp
@@ -83,11 +83,6 @@ void CFWL_Barcode::SetEndChar(FX_CHAR endChar) {
m_cEndChar = endChar;
}
-void CFWL_Barcode::SetVersion(int32_t version) {
- m_dwAttributeMask |= FWL_BCDATTRIBUTE_VERSION;
- m_nVersion = version;
-}
-
void CFWL_Barcode::SetErrorCorrectionLevel(int32_t ecLevel) {
m_dwAttributeMask |= FWL_BCDATTRIBUTE_ECLEVEL;
m_nECLevel = ecLevel;
@@ -98,10 +93,6 @@ void CFWL_Barcode::SetTruncated(bool truncated) {
m_bTruncated = truncated;
}
-void CFWL_Barcode::ResetBarcodeAttributes() {
- m_dwAttributeMask = FWL_BCDATTRIBUTE_NONE;
-}
-
void CFWL_Barcode::SetType(BC_TYPE type) {
if (GetWidget())
ToBarcode(GetWidget())->SetType(type);
@@ -155,7 +146,7 @@ FX_CHAR CFWL_Barcode::GetEndChar() const {
}
int32_t CFWL_Barcode::GetVersion() const {
- return m_nVersion;
+ return 0;
}
int32_t CFWL_Barcode::GetErrorCorrectionLevel() const {
« no previous file with comments | « xfa/fwl/core/cfwl_barcode.h ('k') | xfa/fwl/core/cfwl_checkbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698