diff options
author | Noel Grandin <noel@peralex.com> | 2020-09-21 15:47:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-10-19 12:20:44 +0200 |
commit | 6137de745606e9ccee94119fd1f8b7a90c4aa323 (patch) | |
tree | 8aa5891b84fa2710a8c518dcbcb1b77e968b5da0 /vcl/inc/win | |
parent | a3f93ced82f8d4d122468cc4a1c4298141d67507 (diff) |
tdf#127047 fix printing very large font sizes to pdf
The clamping of font sizes was done in #i47675 and #i95867
to deal with issues in the Windows font libraries which are
presumably no longer a problem.
Change-Id: I124a3ff746953ce4d7d934506e76e6d0cba48307
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103113
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/win')
-rw-r--r-- | vcl/inc/win/salgdi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/salgdi.h b/vcl/inc/win/salgdi.h index a717286737c0..bec473b296b4 100644 --- a/vcl/inc/win/salgdi.h +++ b/vcl/inc/win/salgdi.h @@ -184,7 +184,7 @@ private: bool DrawCachedGlyphs(const GenericSalLayout& rLayout); public: - HFONT ImplDoSetFont(FontSelectPattern const & i_rFont, const PhysicalFontFace * i_pFontFace, float& o_rFontScale, HFONT& o_rOldFont); + HFONT ImplDoSetFont(FontSelectPattern const & i_rFont, const PhysicalFontFace * i_pFontFace, HFONT& o_rOldFont); HDC getHDC() const { return mhLocalDC; } void setHDC(HDC aNew) { mhLocalDC = aNew; } |