diff options
Diffstat (limited to 'fpdfsdk/javascript/report.h')
-rw-r--r-- | fpdfsdk/javascript/report.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fpdfsdk/javascript/report.h b/fpdfsdk/javascript/report.h index 3cd3b3b02c..0773472a94 100644 --- a/fpdfsdk/javascript/report.h +++ b/fpdfsdk/javascript/report.h @@ -17,14 +17,14 @@ class Report : public CJS_EmbedObj { ~Report() override; public: - FX_BOOL save(IJS_Context* cc, - const std::vector<CJS_Value>& params, - CJS_Value& vRet, - CFX_WideString& sError); - FX_BOOL writeText(IJS_Context* cc, - const std::vector<CJS_Value>& params, - CJS_Value& vRet, - CFX_WideString& sError); + bool save(IJS_Context* cc, + const std::vector<CJS_Value>& params, + CJS_Value& vRet, + CFX_WideString& sError); + bool writeText(IJS_Context* cc, + const std::vector<CJS_Value>& params, + CJS_Value& vRet, + CFX_WideString& sError); }; class CJS_Report : public CJS_Object { |