diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-10 12:34:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-10 21:51:42 +0100 |
commit | 068d43071385a0a08dacdd5232e0778be2154778 (patch) | |
tree | 3294bbc181318b5a8bf4230ee1d8ae8dada87cb5 /vcl/source/control | |
parent | 2f66b0cb110c2f7d864f96e850015aa1741e1f94 (diff) |
XubString->OUString
Change-Id: I9a6aef3f5e143ccd6187e3a7f42b041249348870
Diffstat (limited to 'vcl/source/control')
-rw-r--r-- | vcl/source/control/combobox.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index b46213d0f1ec..805d7a1b6236 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -876,13 +876,13 @@ void ComboBox::ImplUpdateFloatSelection() mpImplLB->SetCallSelectionChangedHdl( sal_False ); if ( !IsMultiSelectionEnabled() ) { - XubString aSearchStr( mpSubEdit->GetText() ); - sal_uInt16 nSelect = LISTBOX_ENTRY_NOTFOUND; - sal_Bool bSelect = sal_True; + OUString aSearchStr( mpSubEdit->GetText() ); + sal_uInt16 nSelect = LISTBOX_ENTRY_NOTFOUND; + sal_Bool bSelect = sal_True; if ( mpImplLB->GetCurrentPos() != LISTBOX_ENTRY_NOTFOUND ) { - XubString aCurrent = mpImplLB->GetEntryList()->GetEntryText( mpImplLB->GetCurrentPos() ); + OUString aCurrent = mpImplLB->GetEntryList()->GetEntryText( mpImplLB->GetCurrentPos() ); if ( aCurrent == aSearchStr ) nSelect = mpImplLB->GetCurrentPos(); } |