diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-19 14:10:02 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-19 19:45:48 +0000 |
commit | 94b7876e43a88618364c8256f0645e70d0daae6f (patch) | |
tree | 760041ea56da0f49b16a5d208de407e5ff411a79 /vcl/source/outdev/font.cxx | |
parent | 9c09d4d0d36076d39926eeaf7774171df3b55e52 (diff) |
vcl: add quality accessor & mutator to Font
Change-Id: I261c717cabf966b8b20b8e6c921b38f4cd73e268
Reviewed-on: https://gerrit.libreoffice.org/21597
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/source/outdev/font.cxx')
-rw-r--r-- | vcl/source/outdev/font.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx index 0f7c783dfe4b..208aaa00a1d8 100644 --- a/vcl/source/outdev/font.cxx +++ b/vcl/source/outdev/font.cxx @@ -84,6 +84,7 @@ FontMetric OutputDevice::GetDevFont( int nDevFontIndex ) const aFontMetric.SetWidthType( rData.GetWidthType() ); aFontMetric.SetScalableFlag( rData.IsScalable() ); aFontMetric.SetBuiltInFontFlag( rData.IsBuiltInFont() ); + aFontMetric.SetQuality( rData.GetQuality() ); } return aFontMetric; |