diff options
Diffstat (limited to 'fxjs/xfa/cjx_arc.h')
-rw-r--r-- | fxjs/xfa/cjx_arc.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fxjs/xfa/cjx_arc.h b/fxjs/xfa/cjx_arc.h index a9a6bb6733..2b62884479 100644 --- a/fxjs/xfa/cjx_arc.h +++ b/fxjs/xfa/cjx_arc.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_ARC_H_ #define FXJS_XFA_CJX_ARC_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Arc; @@ -16,12 +17,12 @@ class CJX_Arc : public CJX_Node { explicit CJX_Arc(CXFA_Arc* node); ~CJX_Arc() override; - JS_PROP(circular); - JS_PROP(hand); - JS_PROP(startAngle); - JS_PROP(sweepAngle); - JS_PROP(use); - JS_PROP(usehref); + JSE_PROP(circular); + JSE_PROP(hand); + JSE_PROP(startAngle); + JSE_PROP(sweepAngle); + JSE_PROP(use); + JSE_PROP(usehref); }; #endif // FXJS_XFA_CJX_ARC_H_ |