diff options
Diffstat (limited to 'fpdfsdk/fpdfannot_embeddertest.cpp')
-rw-r--r-- | fpdfsdk/fpdfannot_embeddertest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fpdfsdk/fpdfannot_embeddertest.cpp b/fpdfsdk/fpdfannot_embeddertest.cpp index 6d4521f26e..f07070a4a5 100644 --- a/fpdfsdk/fpdfannot_embeddertest.cpp +++ b/fpdfsdk/fpdfannot_embeddertest.cpp @@ -19,12 +19,12 @@ static constexpr char kContentsKey[] = "Contents"; class FPDFAnnotEmbeddertest : public EmbedderTest {}; -const std::wstring BufferToWString(std::vector<char>& buf) { - return GetPlatformWString(reinterpret_cast<unsigned short*>(buf.data())); +std::wstring BufferToWString(const std::vector<char>& buf) { + return GetPlatformWString(reinterpret_cast<FPDF_WIDESTRING>(buf.data())); } -const std::string BufferToString(std::vector<char>& buf) { - return GetPlatformString(reinterpret_cast<unsigned short*>(buf.data())); +std::string BufferToString(const std::vector<char>& buf) { + return GetPlatformString(reinterpret_cast<FPDF_WIDESTRING>(buf.data())); } TEST_F(FPDFAnnotEmbeddertest, RenderAnnotWithOnlyRolloverAP) { |