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/win/gdi | |
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/win/gdi')
-rw-r--r-- | vcl/win/gdi/salfont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx index ad7cc5653880..0461f31d6e03 100644 --- a/vcl/win/gdi/salfont.cxx +++ b/vcl/win/gdi/salfont.cxx @@ -1737,7 +1737,7 @@ bool WinSalGraphics::CreateFontSubset( const OUString& rToFile, // write subset into destination file nRC = ::CreateTTFromTTGlyphs( aSftTTF.get(), aToFile.getStr(), aShortIDs, - aTempEncs, nGlyphCount, 0, nullptr, 0 ); + aTempEncs, nGlyphCount, 0, nullptr ); return (nRC == SF_OK); } |