summaryrefslogtreecommitdiff
path: root/xfa/fwl/cfx_barcode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fwl/cfx_barcode.cpp')
-rw-r--r--xfa/fwl/cfx_barcode.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/cfx_barcode.cpp b/xfa/fwl/cfx_barcode.cpp
index 7af3aa1888..1c22367901 100644
--- a/xfa/fwl/cfx_barcode.cpp
+++ b/xfa/fwl/cfx_barcode.cpp
@@ -235,8 +235,8 @@ bool CFX_Barcode::SetWideNarrowRatio(int32_t ratio) {
return m_pBCEngine && memptr ? (m_pBCEngine.get()->*memptr)(ratio) : false;
}
-bool CFX_Barcode::SetStartChar(FX_CHAR start) {
- typedef bool (CBC_CodeBase::*memptrtype)(FX_CHAR);
+bool CFX_Barcode::SetStartChar(char start) {
+ typedef bool (CBC_CodeBase::*memptrtype)(char);
memptrtype memptr = nullptr;
switch (GetType()) {
case BC_CODABAR:
@@ -248,8 +248,8 @@ bool CFX_Barcode::SetStartChar(FX_CHAR start) {
return m_pBCEngine && memptr ? (m_pBCEngine.get()->*memptr)(start) : false;
}
-bool CFX_Barcode::SetEndChar(FX_CHAR end) {
- typedef bool (CBC_CodeBase::*memptrtype)(FX_CHAR);
+bool CFX_Barcode::SetEndChar(char end) {
+ typedef bool (CBC_CodeBase::*memptrtype)(char);
memptrtype memptr = nullptr;
switch (GetType()) {
case BC_CODABAR: