diff options
Diffstat (limited to 'fxjs/xfa/cjx_image.h')
-rw-r--r-- | fxjs/xfa/cjx_image.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/fxjs/xfa/cjx_image.h b/fxjs/xfa/cjx_image.h index 5cd120a674..682ea315b9 100644 --- a/fxjs/xfa/cjx_image.h +++ b/fxjs/xfa/cjx_image.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_IMAGE_H_ #define FXJS_XFA_CJX_IMAGE_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Image; @@ -16,14 +17,14 @@ class CJX_Image : public CJX_Node { explicit CJX_Image(CXFA_Image* node); ~CJX_Image() override; - JS_PROP(defaultValue); /* {default} */ - JS_PROP(aspect); - JS_PROP(contentType); - JS_PROP(href); - JS_PROP(transferEncoding); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(value); + JSE_PROP(defaultValue); /* {default} */ + JSE_PROP(aspect); + JSE_PROP(contentType); + JSE_PROP(href); + JSE_PROP(transferEncoding); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(value); }; #endif // FXJS_XFA_CJX_IMAGE_H_ |