diff options
Diffstat (limited to 'vcl/source/gdi/outdev3.cxx')
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 5e66e31ee302..3a42baff65e3 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -910,15 +910,16 @@ bool PhysicalFontFace::IsBetterMatch( const FontSelectPattern& rFSD, FontMatchSt } ImplFontEntry::ImplFontEntry( const FontSelectPattern& rFontSelData ) -: maFontSelData( rFontSelData ), - maMetric( rFontSelData ), - mpConversion( NULL ), - mnRefCount( 1 ), - mnSetFontFlags( 0 ), - mnOwnOrientation( 0 ), - mnOrientation( 0 ), - mbInit( false ), - mpUnicodeFallbackList( NULL ) + : maFontSelData( rFontSelData ) + , maMetric( rFontSelData ) + , mpConversion( NULL ) + , mnLineHeight( 0 ) + , mnRefCount( 1 ) + , mnSetFontFlags( 0 ) + , mnOwnOrientation( 0 ) + , mnOrientation( 0 ) + , mbInit( false ) + , mpUnicodeFallbackList( NULL ) { maFontSelData.mpFontEntry = this; } |