diff options
Diffstat (limited to 'fxjs/xfa/cjx_text.h')
-rw-r--r-- | fxjs/xfa/cjx_text.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fxjs/xfa/cjx_text.h b/fxjs/xfa/cjx_text.h index 386a7a9679..a5c0e81bea 100644 --- a/fxjs/xfa/cjx_text.h +++ b/fxjs/xfa/cjx_text.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_TEXT_H_ #define FXJS_XFA_CJX_TEXT_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_content.h" class CXFA_Text; @@ -16,11 +17,11 @@ class CJX_Text : public CJX_Content { explicit CJX_Text(CXFA_Text* node); ~CJX_Text() override; - JS_PROP(defaultValue); /* {default} */ - JS_PROP(maxChars); - JS_PROP(use); - JS_PROP(usehref); - JS_PROP(value); + JSE_PROP(defaultValue); /* {default} */ + JSE_PROP(maxChars); + JSE_PROP(use); + JSE_PROP(usehref); + JSE_PROP(value); }; #endif // FXJS_XFA_CJX_TEXT_H_ |