diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-07 15:50:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-07 16:07:00 +0200 |
commit | 9f7254e2a2487c71696e41a00a5dd36d55b5d907 (patch) | |
tree | 5c8ae866db41481e3820fa86f065acaa05bb9b47 /vcl/generic | |
parent | d272d64e7cd3a71dc422c3250df869451c088c07 (diff) |
clang-analyzer-deadcode.DeadStores
...ever since its inception with a949f50ce969b1f8d018d2913c0d86cfcec4e72a
"implemented GetGlyphOutline()"
Change-Id: I4591ac5c3d42053b3caa9d68bb12ad02dc319b66
Diffstat (limited to 'vcl/generic')
-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 0e1e504f47ec..e105741179aa 100644 --- a/vcl/generic/glyphs/gcach_ftyp.cxx +++ b/vcl/generic/glyphs/gcach_ftyp.cxx @@ -1580,7 +1580,7 @@ bool ServerFont::GetGlyphOutline( sal_GlyphId aGlyphId, aFuncs.cubic_to = &FT_cubic_to; aFuncs.shift = 0; aFuncs.delta = 0; - rc = FT_Outline_Decompose( &rOutline, &aFuncs, static_cast<void*>(&aPolyArg) ); + FT_Outline_Decompose( &rOutline, &aFuncs, static_cast<void*>(&aPolyArg) ); aPolyArg.ClosePolygon(); // close last polygon FT_Done_Glyph( pGlyphFT ); |