summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-05-23 19:49:08 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-06-07 11:47:17 +0200
commit46f61ee3997c4c6e1a1dca8b2986f31f0e4a6167 (patch)
treead063fa37dead2ebf7ef0a066068f0e38e9fe1a9 /vcl
parent85f892a3a1dbaa3c36ac3f31186eef1ec0eea464 (diff)
be case-insensitive for open/starsymbol comparison
Reviewed-on: https://gerrit.libreoffice.org/4015 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> Signed-off-by: Luboš Luňák <l.lunak@suse.cz> Conflicts: unotools/source/misc/fontcvt.cxx unotools/source/misc/fontdefs.cxx vcl/generic/glyphs/gcach_ftyp.cxx Change-Id: I7a342c809a723f5f9c03271c6145d9c367cea6de
Diffstat (limited to 'vcl')
-rw-r--r--vcl/generic/glyphs/gcach_ftyp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx b/vcl/generic/glyphs/gcach_ftyp.cxx
index 31aec5599511..ac2000d37a03 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -930,8 +930,8 @@ void ServerFont::FetchFontMetric( ImplFontMetricData& rTo, long& rFactor ) const
//Always consider [star]symbol as symbol fonts
if (
- (rTo.GetFamilyName().EqualsAscii("OpenSymbol")) ||
- (rTo.GetFamilyName().EqualsAscii("StarSymbol"))
+ (rTo.GetFamilyName().EqualsIgnoreCaseAscii("OpenSymbol")) ||
+ (rTo.GetFamilyName().EqualsIgnoreCaseAscii("StarSymbol"))
)
{
rTo.mbSymbolFlag = true;