diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-29 13:39:37 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-29 22:51:26 +0000 |
commit | 2e0ab512592e2e134faf9612a293fb8fdd0527d0 (patch) | |
tree | f302654d0f3b23da6603bf4ad7b8ef7905cd9be7 /vcl/quartz | |
parent | 70ecf1919e3e3b9509ff55b2265b3d98d2a5f1aa (diff) |
Strip down GetEmbedFontData to what is really used
The only remaining user is EmbeddedFontsHelper, and it just needs the
raw font data.
Change-Id: Ia15c59158b5c9e44d0936463553303a3c8b6e0f5
Reviewed-on: https://gerrit.libreoffice.org/31374
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdi.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index e57fd954c272..4a363b3892ef 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -840,12 +840,7 @@ void AquaSalGraphics::GetGlyphWidths( const PhysicalFontFace* pFontData, bool bV ::CloseTTFont( pSftFont ); } -const void* AquaSalGraphics::GetEmbedFontData( const PhysicalFontFace*, - const sal_Ucs* /*pUnicodes*/, - sal_Int32* /*pWidths*/, - size_t /*nLen*/, - FontSubsetInfo&, - long* /*pDataLen*/ ) +const void* AquaSalGraphics::GetEmbedFontData(const PhysicalFontFace*, long* /*pDataLen*/) { return nullptr; } |