| Index: fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
 | 
| diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
 | 
| index 744118fb9ccbcd292e350b41f8710d56413d76e6..33c95d4232ccd52788daedeb0acfe81bb54a68d3 100644
 | 
| --- a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
 | 
| +++ b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
 | 
| @@ -266,7 +266,7 @@ void CPWL_ComboBox::SetSelect(FX_INT32 nItemIndex)
 | 
|  	if (m_pList)
 | 
|  		m_pList->Select(nItemIndex);
 | 
|  
 | 
| -	m_pEdit->SetText(m_pList->GetText());
 | 
| +	m_pEdit->SetText(m_pList->GetText().c_str());
 | 
|  
 | 
|  	m_nSelectItem = nItemIndex;
 | 
|  }
 | 
| @@ -674,7 +674,7 @@ void CPWL_ComboBox::SetSelectText()
 | 
|  {
 | 
|  	CFX_WideString swText = m_pList->GetText();
 | 
|  	m_pEdit->SelectAll();
 | 
| -	m_pEdit->ReplaceSel(m_pList->GetText());
 | 
| +	m_pEdit->ReplaceSel(m_pList->GetText().c_str());
 | 
|  	m_pEdit->SelectAll();
 | 
|  
 | 
|  	m_nSelectItem = m_pList->GetCurSel();
 | 
| 
 |