| Index: fpdfsdk/fsdk_baseform.cpp
|
| diff --git a/fpdfsdk/fsdk_baseform.cpp b/fpdfsdk/fsdk_baseform.cpp
|
| index 7487cddedeba4864c6f708ad9440359c0798312a..86f5c5e501a1581868ddc922b9a3f745db67b88d 100644
|
| --- a/fpdfsdk/fsdk_baseform.cpp
|
| +++ b/fpdfsdk/fsdk_baseform.cpp
|
| @@ -1410,7 +1410,7 @@ void CPDFSDK_Widget::ResetAppearance_ComboBox(const FX_WCHAR* sValue) {
|
| sBody << CPWL_Utils::GetDropButtonAppStream(rcButton);
|
|
|
| CFX_ByteString sAP = GetBackgroundAppStream() + GetBorderAppStream() +
|
| - sLines.GetByteString() + sBody.GetByteString();
|
| + sLines.AsStringC() + sBody.AsStringC();
|
|
|
| WriteAppearance("N", GetRotatedRect(), GetMatrix(), sAP);
|
| }
|
| @@ -1499,7 +1499,7 @@ void CPDFSDK_Widget::ResetAppearance_ListBox() {
|
| }
|
|
|
| CFX_ByteString sAP = GetBackgroundAppStream() + GetBorderAppStream() +
|
| - sLines.GetByteString() + sBody.GetByteString();
|
| + sLines.AsStringC() + sBody.AsStringC();
|
|
|
| WriteAppearance("N", GetRotatedRect(), GetMatrix(), sAP);
|
| }
|
| @@ -1648,7 +1648,7 @@ void CPDFSDK_Widget::ResetAppearance_TextField(const FX_WCHAR* sValue) {
|
| }
|
|
|
| CFX_ByteString sAP = GetBackgroundAppStream() + GetBorderAppStream() +
|
| - sLines.GetByteString() + sBody.GetByteString();
|
| + sLines.AsStringC() + sBody.AsStringC();
|
| WriteAppearance("N", GetRotatedRect(), GetMatrix(), sAP);
|
| }
|
|
|
|
|