summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/fontmanager/fontconfig.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/generic/fontmanager/fontconfig.cxx')
-rw-r--r--vcl/unx/generic/fontmanager/fontconfig.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/fontmanager/fontconfig.cxx b/vcl/unx/generic/fontmanager/fontconfig.cxx
index 4b3803231179..6b6b1442778a 100644
--- a/vcl/unx/generic/fontmanager/fontconfig.cxx
+++ b/vcl/unx/generic/fontmanager/fontconfig.cxx
@@ -276,7 +276,7 @@ namespace
for( std::vector<lang_and_element>::const_iterator aIter = elements.begin(); aIter != aEnd; ++aIter )
{
const char *pLang = reinterpret_cast<const char*>(aIter->first);
- if( rtl_str_compare( pLang, sFullMatch.getStr() ) == 0)
+ if( sFullMatch == pLang)
{
// both language and country match
candidate = aIter->second;
@@ -288,7 +288,7 @@ namespace
// override candidate only if there is a full match
continue;
}
- else if( rtl_str_compare( pLang, sLangMatch.getStr()) == 0)
+ else if( sLangMatch == pLang)
{
// just the language matches
candidate = aIter->second;