diff options
Diffstat (limited to 'fxjs/xfa/cjx_recordset.h')
-rw-r--r-- | fxjs/xfa/cjx_recordset.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/fxjs/xfa/cjx_recordset.h b/fxjs/xfa/cjx_recordset.h index 7c34f6e472..da2319f649 100644 --- a/fxjs/xfa/cjx_recordset.h +++ b/fxjs/xfa/cjx_recordset.h @@ -7,6 +7,7 @@ #ifndef FXJS_XFA_CJX_RECORDSET_H_ #define FXJS_XFA_CJX_RECORDSET_H_ +#include "fxjs/jse_define.h" #include "fxjs/xfa/cjx_node.h" class CXFA_RecordSet; @@ -16,14 +17,14 @@ class CJX_RecordSet : public CJX_Node { explicit CJX_RecordSet(CXFA_RecordSet* node); ~CJX_RecordSet() override; - JS_PROP(bofAction); - JS_PROP(cursorLocation); - JS_PROP(cursorType); - JS_PROP(eofAction); - JS_PROP(lockType); - JS_PROP(max); - JS_PROP(use); - JS_PROP(usehref); + JSE_PROP(bofAction); + JSE_PROP(cursorLocation); + JSE_PROP(cursorType); + JSE_PROP(eofAction); + JSE_PROP(lockType); + JSE_PROP(max); + JSE_PROP(use); + JSE_PROP(usehref); }; #endif // FXJS_XFA_CJX_RECORDSET_H_ |