diff options
Diffstat (limited to 'fxjs/xfa/cjx_area.h')
-rw-r--r-- | fxjs/xfa/cjx_area.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fxjs/xfa/cjx_area.h b/fxjs/xfa/cjx_area.h index 94083b351a..2814231091 100644 --- a/fxjs/xfa/cjx_area.h +++ b/fxjs/xfa/cjx_area.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_AREA_H_ #define FXJS_XFA_CJX_AREA_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_container.h" class CXFA_Area; @@ -16,12 +17,12 @@ class CJX_Area : public CJX_Container { explicit CJX_Area(CXFA_Area* node); ~CJX_Area() override; - JS_PROP(colSpan); - JS_PROP(relevant); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(x); - JS_PROP(y); + JSE_PROP(colSpan); + JSE_PROP(relevant); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(x); + JSE_PROP(y); }; #endif // FXJS_XFA_CJX_AREA_H_ |