diff options
Diffstat (limited to 'fxjs/xfa/cjx_script.h')
-rw-r--r-- | fxjs/xfa/cjx_script.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/fxjs/xfa/cjx_script.h b/fxjs/xfa/cjx_script.h index ad5f99418d..fe76df49e0 100644 --- a/fxjs/xfa/cjx_script.h +++ b/fxjs/xfa/cjx_script.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_SCRIPT_H_ #define FXJS_XFA_CJX_SCRIPT_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_Script; @@ -16,14 +17,14 @@ class CJX_Script : public CJX_Node { explicit CJX_Script(CXFA_Script* node); ~CJX_Script() override; - JS_PROP(defaultValue); /* {default} */ - JS_PROP(binding); - JS_PROP(contentType); - JS_PROP(runAt); - JS_PROP(stateless); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(value); + JSE_PROP(defaultValue); /* {default} */ + JSE_PROP(binding); + JSE_PROP(contentType); + JSE_PROP(runAt); + JSE_PROP(stateless); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(value); }; #endif // FXJS_XFA_CJX_SCRIPT_H_ |