summaryrefslogtreecommitdiff
path: root/fxjs/cjs_annot.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/cjs_annot.h')
-rw-r--r--fxjs/cjs_annot.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/fxjs/cjs_annot.h b/fxjs/cjs_annot.h
index d313d5656f..79b2663162 100644
--- a/fxjs/cjs_annot.h
+++ b/fxjs/cjs_annot.h
@@ -29,14 +29,14 @@ class CJS_Annot : public CJS_Object {
static const char kName[];
static const JSPropertySpec PropertySpecs[];
- CJS_Return get_hidden(CJS_Runtime* pRuntime);
- CJS_Return set_hidden(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
+ CJS_Result get_hidden(CJS_Runtime* pRuntime);
+ CJS_Result set_hidden(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
- CJS_Return get_name(CJS_Runtime* pRuntime);
- CJS_Return set_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
+ CJS_Result get_name(CJS_Runtime* pRuntime);
+ CJS_Result set_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
- CJS_Return get_type(CJS_Runtime* pRuntime);
- CJS_Return set_type(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
+ CJS_Result get_type(CJS_Runtime* pRuntime);
+ CJS_Result set_type(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
CPDFSDK_Annot::ObservedPtr m_pAnnot;
};