summaryrefslogtreecommitdiff
path: root/vcl/generic/glyphs/gcach_ftyp.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-13 17:15:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-14 10:39:13 +0200
commitbc8a8443a4c9f85dbfa8e064d14c603f5a2d160f (patch)
treec5cd5fd55fde31c0a2d0870f74aff717428f739c /vcl/generic/glyphs/gcach_ftyp.cxx
parent0cbc03f46828296b06bb58ae7e7face7bc1a6364 (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I5d37ddd95068d807d0f28dd2f00d43b227e910c5
Diffstat (limited to 'vcl/generic/glyphs/gcach_ftyp.cxx')
-rw-r--r--vcl/generic/glyphs/gcach_ftyp.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx b/vcl/generic/glyphs/gcach_ftyp.cxx
index ca35f54c0648..8ac55e40b28b 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -500,7 +500,7 @@ void FtFontInfo::AnnounceFont( ImplDevFontList* pFontList )
// =======================================================================
FreetypeManager::FreetypeManager()
-: mnMaxFontId( 0 ), mnNextFontId( 0x1000 )
+: mnMaxFontId( 0 )
{
/*FT_Error rcFT =*/ FT_Init_FreeType( &aLibFT );
@@ -2153,7 +2153,6 @@ private:
sal_uInt16 mnMaxPoints;
sal_uInt16 mnPoints;
sal_uInt16 mnPoly;
- long mnHeight;
bool bHasOffline;
};
@@ -2164,7 +2163,6 @@ PolyArgs::PolyArgs( PolyPolygon& rPolyPoly, sal_uInt16 nMaxPoints )
mnMaxPoints(nMaxPoints),
mnPoints(0),
mnPoly(0),
- mnHeight(0),
bHasOffline(false)
{
mpPointAry = new Point[ mnMaxPoints ];