diff options
Diffstat (limited to 'fpdfsdk/fpdfformfill.cpp')
-rw-r--r-- | fpdfsdk/fpdfformfill.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/fpdfformfill.cpp b/fpdfsdk/fpdfformfill.cpp index a466e73abb..121e1a9c8e 100644 --- a/fpdfsdk/fpdfformfill.cpp +++ b/fpdfsdk/fpdfformfill.cpp @@ -67,11 +67,11 @@ CPDFSDK_PageView* FormHandleToPageView(FPDF_FORMHANDLE hHandle, #ifdef PDF_ENABLE_XFA std::vector<CFX_ByteString>* FromFPDFStringHandle(FPDF_STRINGHANDLE handle) { - return reinterpret_cast<std::vector<CFX_ByteString>*>(handle); + return static_cast<std::vector<CFX_ByteString>*>(handle); } FPDF_STRINGHANDLE ToFPDFStringHandle(std::vector<CFX_ByteString>* strings) { - return reinterpret_cast<FPDF_STRINGHANDLE>(strings); + return static_cast<FPDF_STRINGHANDLE>(strings); } #endif // PDF_ENABLE_XFA |