diff options
Diffstat (limited to 'fxjs/xfa/cjx_margin.h')
-rw-r--r-- | fxjs/xfa/cjx_margin.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fxjs/xfa/cjx_margin.h b/fxjs/xfa/cjx_margin.h index 0ca884f708..be0e2207e4 100644 --- a/fxjs/xfa/cjx_margin.h +++ b/fxjs/xfa/cjx_margin.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_MARGIN_H_ #define FXJS_XFA_CJX_MARGIN_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Margin; @@ -16,12 +17,12 @@ class CJX_Margin : public CJX_Node { explicit CJX_Margin(CXFA_Margin* node); ~CJX_Margin() override; - JS_PROP(bottomInset); - JS_PROP(leftInset); - JS_PROP(rightInset); - JS_PROP(topInset); - JS_PROP(use); - JS_PROP(usehref); + JSE_PROP(bottomInset); + JSE_PROP(leftInset); + JSE_PROP(rightInset); + JSE_PROP(topInset); + JSE_PROP(use); + JSE_PROP(usehref); }; #endif // FXJS_XFA_CJX_MARGIN_H_ |