summaryrefslogtreecommitdiffstats
path: root/vcl/generic/glyphs
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-07 15:36:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-07 15:36:58 +0200
commitb08e6375f287037f8cc996a428a7b6bc55b08594 (patch)
tree81a3fe55da9c423c590efe215c35d8d64f506a79 /vcl/generic/glyphs
parentRelated: tdf#93675 'new' ms-alike numbering has same problem as old numbering (diff)
downloadcore-b08e6375f287037f8cc996a428a7b6bc55b08594.tar.gz
core-b08e6375f287037f8cc996a428a7b6bc55b08594.zip
clang-analyzer-deadcode.DeadStores
...ever since its inception with d9bf8cb9c3f087115f72ba371e1291fd0eba3818 "add serverside font feature" Change-Id: I430b457dbf278be3299883ba0fac09a6b68c5d67
Diffstat (limited to 'vcl/generic/glyphs')
-rw-r--r--vcl/generic/glyphs/gcach_ftyp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx b/vcl/generic/glyphs/gcach_ftyp.cxx
index c35ff9512e84..54a7aa69bcf2 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -960,7 +960,7 @@ void ServerFont::InitGlyphData( sal_GlyphId aGlyphId, GlyphData& rGD ) const
rGD.SetCharWidth( nCharWidth );
FT_Glyph pGlyphFT;
- rc = FT_Get_Glyph( maFaceFT->glyph, &pGlyphFT );
+ FT_Get_Glyph( maFaceFT->glyph, &pGlyphFT );
ApplyGlyphTransform( nGlyphFlags, pGlyphFT, false );
rGD.SetDelta( (pGlyphFT->advance.x + 0x8000) >> 16, -((pGlyphFT->advance.y + 0x8000) >> 16) );