diff options
Diffstat (limited to 'fxjs/xfa/cjx_draw.h')
-rw-r--r-- | fxjs/xfa/cjx_draw.h | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/fxjs/xfa/cjx_draw.h b/fxjs/xfa/cjx_draw.h index 1d5603aefe..508d3e1597 100644 --- a/fxjs/xfa/cjx_draw.h +++ b/fxjs/xfa/cjx_draw.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_DRAW_H_ #define FXJS_XFA_CJX_DRAW_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_container.h" class CXFA_Draw; @@ -16,26 +17,26 @@ class CJX_Draw : public CJX_Container { explicit CJX_Draw(CXFA_Draw* node); ~CJX_Draw() override; - JS_PROP(defaultValue); /* {default} */ - JS_PROP(anchorType); - JS_PROP(colSpan); - JS_PROP(h); - JS_PROP(hAlign); - JS_PROP(locale); - JS_PROP(maxH); - JS_PROP(maxW); - JS_PROP(minH); - JS_PROP(minW); - JS_PROP(presence); - JS_PROP(rawValue); - JS_PROP(relevant); - JS_PROP(rotate); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(vAlign); - JS_PROP(w); - JS_PROP(x); - JS_PROP(y); + JSE_PROP(defaultValue); /* {default} */ + JSE_PROP(anchorType); + JSE_PROP(colSpan); + JSE_PROP(h); + JSE_PROP(hAlign); + JSE_PROP(locale); + JSE_PROP(maxH); + JSE_PROP(maxW); + JSE_PROP(minH); + JSE_PROP(minW); + JSE_PROP(presence); + JSE_PROP(rawValue); + JSE_PROP(relevant); + JSE_PROP(rotate); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(vAlign); + JSE_PROP(w); + JSE_PROP(x); + JSE_PROP(y); }; #endif // FXJS_XFA_CJX_DRAW_H_ |