| Index: fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| index bdc6724f65828fe1b05c58d3550eeda64c22be83..6edd6bdd8570f0aa4f6a09c7a3610ca9741669a3 100644
|
| --- a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| +++ b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
|
| @@ -239,9 +239,9 @@ void CPWL_ComboBox::SetText(const FX_WCHAR* text) {
|
| m_pEdit->SetText(text);
|
| }
|
|
|
| -void CPWL_ComboBox::AddString(const FX_WCHAR* string) {
|
| +void CPWL_ComboBox::AddString(const FX_WCHAR* str) {
|
| if (m_pList)
|
| - m_pList->AddString(string);
|
| + m_pList->AddString(str);
|
| }
|
|
|
| int32_t CPWL_ComboBox::GetSelect() const {
|
|
|