diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-07 15:36:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-07 15:36:58 +0200 |
commit | b08e6375f287037f8cc996a428a7b6bc55b08594 (patch) | |
tree | 81a3fe55da9c423c590efe215c35d8d64f506a79 /vcl | |
parent | 54f9576aa43e3d6d687469aa0b2ea56ce0bbaca3 (diff) |
clang-analyzer-deadcode.DeadStores
...ever since its inception with d9bf8cb9c3f087115f72ba371e1291fd0eba3818 "add
serverside font feature"
Change-Id: I430b457dbf278be3299883ba0fac09a6b68c5d67
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/generic/glyphs/gcach_ftyp.cxx | 2 |
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) ); |