diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-11 21:59:53 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-11 21:59:53 +0100 |
commit | 221c71c9c7a13374efdc28a81f7106246011c580 (patch) | |
tree | 7c2a47240d93621daa03a2a3b080a9511b551bed /vcl/source/gdi | |
parent | df6b4f98d3d87ef27b181c524131a8864f694caa (diff) |
vcl: further fixes
introduced due to 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10
Change-Id: I9e3489be57fc8fe3cfcf753a11d926e79bcba3de
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 6908c40c777f..d218a809ddd6 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -2430,8 +2430,8 @@ ImplFontEntry* ImplFontCache::GetFontEntry( ImplDevFontList* pFontList, //to see if it's a modern re-coded apple symbol font in case that //font shows up on a different platform if (!pEntry->mpConversion && - aFontSelData.maTargetName.EqualsIgnoreCaseAscii("symbol") && - aFontSelData.maSearchName.EqualsIgnoreCaseAscii("symbol")) + aFontSelData.maTargetName.equalsIgnoreCaseAscii("symbol") && + aFontSelData.maSearchName.equalsIgnoreCaseAscii("symbol")) { pEntry->mpConversion = ConvertChar::GetRecodeData( OUString("Symbol"), OUString("AppleSymbol") ); } |