diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-08 12:31:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-08 12:36:24 +0000 |
commit | eb1352bb40b3571ee215d6f8bf0c8a0a85297aa4 (patch) | |
tree | e63470f07144e353b9627376bdff1fb00b92b1fd /vcl/quartz | |
parent | b6f9eeb9b5c0e29ca655185dc299ebd4a2c092d7 (diff) |
drop unused enum TTCreationFlags
there is only one method using it, and all of the call sites pass 0
Change-Id: I5d71b36cf890fbcf0be9d795756da0cfd61ae309
Reviewed-on: https://gerrit.libreoffice.org/34024
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 0d213da72cdf..db14e3699e3e 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -319,7 +319,7 @@ bool AquaSalGraphics::CreateFontSubset( const OUString& rToFile, // write subset into destination file nRC = ::CreateTTFromTTGlyphs( pSftFont, aToFile.getStr(), aShortIDs, - aTempEncs, nGlyphCount, 0, nullptr, 0 ); + aTempEncs, nGlyphCount, 0, nullptr ); ::CloseTTFont(pSftFont); return (nRC == SF_OK); } |