Index: xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h |
diff --git a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h |
index a99c0e89f8d9fb04bef14dfb3931720c8e62aa9d..db1f8e3ad32ecad6b23c21e3bd4b6eb87067c982 100644 |
--- a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h |
+++ b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.h |
@@ -17,24 +17,24 @@ class CBC_OnedCode128Reader : public CBC_OneDReader { |
CBC_CommonBitArray* row, |
int32_t hints, |
int32_t& e); |
- const static int32_t CODE_PATTERNS[107][7]; |
- const static int32_t MAX_AVG_VARIANCE; |
- const static int32_t MAX_INDIVIDUAL_VARIANCE; |
+ static const int32_t CODE_PATTERNS[107][7]; |
+ static const int32_t MAX_AVG_VARIANCE; |
Tom Sepez
2016/03/08 19:27:06
etc.
dsinclair
2016/03/08 21:08:03
Done.
|
+ static const int32_t MAX_INDIVIDUAL_VARIANCE; |
- const static int32_t CODE_SHIFT; |
- const static int32_t CODE_CODE_C; |
- const static int32_t CODE_CODE_B; |
- const static int32_t CODE_CODE_A; |
- const static int32_t CODE_FNC_1; |
- const static int32_t CODE_FNC_2; |
- const static int32_t CODE_FNC_3; |
- const static int32_t CODE_FNC_4_A; |
- const static int32_t CODE_FNC_4_B; |
+ static const int32_t CODE_SHIFT; |
+ static const int32_t CODE_CODE_C; |
+ static const int32_t CODE_CODE_B; |
+ static const int32_t CODE_CODE_A; |
+ static const int32_t CODE_FNC_1; |
+ static const int32_t CODE_FNC_2; |
+ static const int32_t CODE_FNC_3; |
+ static const int32_t CODE_FNC_4_A; |
+ static const int32_t CODE_FNC_4_B; |
- const static int32_t CODE_START_A; |
- const static int32_t CODE_START_B; |
- const static int32_t CODE_START_C; |
- const static int32_t CODE_STOP; |
+ static const int32_t CODE_START_A; |
+ static const int32_t CODE_START_B; |
+ static const int32_t CODE_START_C; |
+ static const int32_t CODE_STOP; |
private: |
CFX_Int32Array* FindStartPattern(CBC_CommonBitArray* row, int32_t& e); |