summaryrefslogtreecommitdiff
path: root/sw/source/ui/cctrl/swlbox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/cctrl/swlbox.cxx')
-rw-r--r--sw/source/ui/cctrl/swlbox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/cctrl/swlbox.cxx b/sw/source/ui/cctrl/swlbox.cxx
index 5d2bf53098c2..38f6aabbbc9e 100644
--- a/sw/source/ui/cctrl/swlbox.cxx
+++ b/sw/source/ui/cctrl/swlbox.cxx
@@ -159,9 +159,9 @@ String SwComboBox::GetText() const
String aTxt( ComboBox::GetText() );
if(nStyle & CBS_LOWER)
- GetAppCharClass().toLower( aTxt );
+ aTxt = GetAppCharClass().lowercase( aTxt );
else if( nStyle & CBS_UPPER )
- GetAppCharClass().toUpper( aTxt );
+ aTxt = GetAppCharClass().uppercase( aTxt );
return aTxt;
}