diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-07-05 18:37:35 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2018-07-06 10:47:30 +0200 |
commit | e2320955b32595df09c9c4412ccec56a0b273df7 (patch) | |
tree | 267899466b4be7f3a36473ff55ac0229685b220a /vcl/source/font/fontcache.cxx | |
parent | df8589bd49d7eb1bb42ae78abcb91d33cf9255ce (diff) |
Some cleanup and comments
Change-Id: Ic1dda9b0e5d7896703b65d0d43be340196bcb871
Diffstat (limited to 'vcl/source/font/fontcache.cxx')
-rw-r--r-- | vcl/source/font/fontcache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/font/fontcache.cxx b/vcl/source/font/fontcache.cxx index a58d9b6931f2..333bc8415c08 100644 --- a/vcl/source/font/fontcache.cxx +++ b/vcl/source/font/fontcache.cxx @@ -48,7 +48,7 @@ bool ImplFontCache::IFSD_Equal::operator()(const FontSelectPattern& rA, const Fo return false; // check font face attributes - if( (rA.GetWeight() != rB.GetWeight()) + if( (rA.GetWeight() != rB.GetWeight()) || (rA.GetItalic() != rB.GetItalic()) // || (rA.meFamily != rB.meFamily) // TODO: remove this mostly obsolete member || (rA.GetPitch() != rB.GetPitch()) ) |