| Index: fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| index 51c4c185f9c141f72340cb8bc290e92f940cd7ee..6ed64a47763b93d2ea9c9477648b682fa3a22fcd 100644
|
| --- a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| +++ b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| @@ -244,13 +244,13 @@ CFX_WideString CPWL_ComboBox::GetText() const
|
| return CFX_WideString();
|
| }
|
|
|
| -void CPWL_ComboBox::SetText(FX_LPCWSTR text)
|
| +void CPWL_ComboBox::SetText(const FX_WCHAR* text)
|
| {
|
| if (m_pEdit)
|
| m_pEdit->SetText(text);
|
| }
|
|
|
| -void CPWL_ComboBox::AddString(FX_LPCWSTR string)
|
| +void CPWL_ComboBox::AddString(const FX_WCHAR* string)
|
| {
|
| if (m_pList)
|
| m_pList->AddString(string);
|
|
|