diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-07 15:57:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-11 08:51:23 +0200 |
commit | a901e48579e203a28cc0871ceed0356ae6a5798b (patch) | |
tree | 6186461f1e95c929a404db49b90da92c53746242 /vcl/quartz/salgdi.cxx | |
parent | a49440b1c4a7cd831212e2e3c19f89ce12a4e889 (diff) |
drop PhysicalFontFace::Clone
since we are now holding these via reference counting, no need to clone
them
Change-Id: I7b0bd86f4a5bca428f7dcd989f838a9aa0c7e179
Reviewed-on: https://gerrit.libreoffice.org/55427
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/quartz/salgdi.cxx')
-rw-r--r-- | vcl/quartz/salgdi.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index fcb583af8cfb..e9522835a8f1 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -103,14 +103,6 @@ bool CoreTextGlyphFallbackSubstititution::FindFontSubstitute(FontSelectPattern& return bFound; } -CoreTextFontFace::CoreTextFontFace( const CoreTextFontFace& rSrc ) - : PhysicalFontFace( rSrc ) - , mnFontId( rSrc.mnFontId ) -{ - if( rSrc.mxCharMap.is() ) - mxCharMap = rSrc.mxCharMap; -} - CoreTextFontFace::CoreTextFontFace( const FontAttributes& rDFA, sal_IntPtr nFontId ) : PhysicalFontFace( rDFA ) , mnFontId( nFontId ) |