diff options
Diffstat (limited to 'fxjs/xfa/cjx_barcode.h')
-rw-r--r-- | fxjs/xfa/cjx_barcode.h | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/fxjs/xfa/cjx_barcode.h b/fxjs/xfa/cjx_barcode.h index f5d88816bd..3901bd6b63 100644 --- a/fxjs/xfa/cjx_barcode.h +++ b/fxjs/xfa/cjx_barcode.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_BARCODE_H_ #define FXJS_XFA_CJX_BARCODE_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Barcode; @@ -16,26 +17,26 @@ class CJX_Barcode : public CJX_Node { explicit CJX_Barcode(CXFA_Barcode* arc); ~CJX_Barcode() override; - JS_PROP(charEncoding); - JS_PROP(checksum); - JS_PROP(dataColumnCount); - JS_PROP(dataLength); - JS_PROP(dataPrep); - JS_PROP(dataRowCount); - JS_PROP(endChar); - JS_PROP(errorCorrectionLevel); - JS_PROP(moduleHeight); - JS_PROP(moduleWidth); - JS_PROP(printCheckDigit); - JS_PROP(rowColumnRatio); - JS_PROP(startChar); - JS_PROP(textLocation); - JS_PROP(truncate); - JS_PROP(type); - JS_PROP(upsMode); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(wideNarrowRatio); + JSE_PROP(charEncoding); + JSE_PROP(checksum); + JSE_PROP(dataColumnCount); + JSE_PROP(dataLength); + JSE_PROP(dataPrep); + JSE_PROP(dataRowCount); + JSE_PROP(endChar); + JSE_PROP(errorCorrectionLevel); + JSE_PROP(moduleHeight); + JSE_PROP(moduleWidth); + JSE_PROP(printCheckDigit); + JSE_PROP(rowColumnRatio); + JSE_PROP(startChar); + JSE_PROP(textLocation); + JSE_PROP(truncate); + JSE_PROP(type); + JSE_PROP(upsMode); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(wideNarrowRatio); }; #endif // FXJS_XFA_CJX_BARCODE_H_ |