summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/ui/fldui/fldref.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/fldui/fldref.cxx b/sw/source/ui/fldui/fldref.cxx
index a427e8be7f91..d8e1fc77cdb7 100644
--- a/sw/source/ui/fldui/fldref.cxx
+++ b/sw/source/ui/fldui/fldref.cxx
@@ -734,8 +734,8 @@ bool SwFieldRefPage::MatchSubstring( const OUString& rListString, const OUString
{
if(rSubstr.isEmpty())
return true;
- OUString aListString = rListString.toAsciiLowerCase();
- OUString aSubstr = rSubstr.toAsciiLowerCase();
+ OUString aListString = GetAppCharClass().lowercase(rListString);
+ OUString aSubstr = GetAppCharClass().lowercase(rSubstr);
return aListString.indexOf(aSubstr) >= 0;
}