diff options
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp | 2 | ||||
-rw-r--r-- | fpdfsdk/pwl/cpwl_appstream.cpp | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp b/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp index 386ea95f5e..3f9f3038fe 100644 --- a/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp +++ b/fpdfsdk/fpdfxfa/cpdfxfa_docenvironment.cpp @@ -405,7 +405,7 @@ void CPDFXFA_DocEnvironment::GetTitle(CXFA_FFDoc* hDoc, WideString& wsTitle) { return; ByteString csTitle = pInfoDict->GetStringFor("Title"); - wsTitle = WideString::FromLocal(csTitle.c_str()); + wsTitle = WideString::FromLocal(csTitle.AsStringView()); } void CPDFXFA_DocEnvironment::SetTitle(CXFA_FFDoc* hDoc, diff --git a/fpdfsdk/pwl/cpwl_appstream.cpp b/fpdfsdk/pwl/cpwl_appstream.cpp index aa612f0c07..c17c146d20 100644 --- a/fpdfsdk/pwl/cpwl_appstream.cpp +++ b/fpdfsdk/pwl/cpwl_appstream.cpp @@ -1949,8 +1949,7 @@ void CPWL_AppStream::Write(const ByteString& sAPType, } pStreamDict->SetMatrixFor("Matrix", widget_->GetMatrix()); pStreamDict->SetRectFor("BBox", widget_->GetRotatedRect()); - pStream->SetDataAndRemoveFilter((uint8_t*)(sContents.c_str()), - sContents.GetLength()); + pStream->SetDataAndRemoveFilter(sContents.raw_str(), sContents.GetLength()); } void CPWL_AppStream::Remove(const ByteString& sAPType) { |