[Libreoffice-commits] core.git: vcl/source
Chris Sherlock
chris.sherlock79 at gmail.com
Fri Jan 22 07:43:04 PST 2016
vcl/source/font/font.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8d84f24a190d3290d8ef5aeee451fc37f293406d
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
Date: Fri Jan 22 15:31:44 2016 +1100
vcl: oops, these shouldn't be set to false but should be copied
Change-Id: Ibb940d91b15d20f31fe60075c5eae05031949d17
Reviewed-on: https://gerrit.libreoffice.org/21697
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79 at gmail.com>
diff --git a/vcl/source/font/font.cxx b/vcl/source/font/font.cxx
index 6890ca6..994df92 100644
--- a/vcl/source/font/font.cxx
+++ b/vcl/source/font/font.cxx
@@ -904,8 +904,8 @@ ImplFont::ImplFont( const ImplFont& rImplFont ) :
mbVertical( rImplFont.mbVertical ),
mbTransparent( rImplFont.mbTransparent ),
mbDevice( rImplFont.mbDevice ),
- mbEmbeddable( false ),
- mbSubsettable( false ),
+ mbEmbeddable( rImplFont.mbEmbeddable ),
+ mbSubsettable( rImplFont.mbSubsettable ),
mbRotatable( rImplFont.mbRotatable ),
mnQuality( rImplFont.mnQuality )
{}
More information about the Libreoffice-commits
mailing list