summaryrefslogtreecommitdiff
path: root/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-27 12:06:58 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-27 12:06:58 -0700
commit4f7bc04ed64edbf72f49b2189f85bb88f0b547c7 (patch)
tree708c0cc04028015e2860f07e8e60780b34137094 /fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
parente5350eff5c5cfe4d01686a4c787d764bde5dd23c (diff)
downloadpdfium-4f7bc04ed64edbf72f49b2189f85bb88f0b547c7.tar.xz
Merge to XFA: Reduce usage of operator LPCWSTR from CFX_WideString().
Original Review URL: https://codereview.chromium.org/1101933003 TBR=brucedawson@chromium.org Review URL: https://codereview.chromium.org/1108903002
Diffstat (limited to 'fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp')
-rw-r--r--fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp
index 744118fb9c..33c95d4232 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();