diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2021-09-07 04:46:19 +1000 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-07 08:54:03 +0200 |
commit | 2284be4f80664c54fa2ef8652030aa14d63c13a2 (patch) | |
tree | 3a5fd2a82dea5cc4e0af42675a766ebc08162caf /vcl/inc/pdf | |
parent | 26e45694433721a8837a2133c05798776576def6 (diff) |
vcl: followup tdf#74702 vcl: remove GetOutDevType() from ImplNewFont()
virtual keyword was missing on ImplNewFont(), without it the previous
change effectively removed the PDFWriterImpl code. Thanks to Noel for
pointing this out.
Change-Id: I3148ee90e61cdb9d2d6b242ebe4964fb0394416d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121734
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/pdf')
-rw-r--r-- | vcl/inc/pdf/pdfwriter_impl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/pdf/pdfwriter_impl.hxx b/vcl/inc/pdf/pdfwriter_impl.hxx index c345fbf23d42..d8dc69d07a13 100644 --- a/vcl/inc/pdf/pdfwriter_impl.hxx +++ b/vcl/inc/pdf/pdfwriter_impl.hxx @@ -643,7 +643,7 @@ public: static void convertLineInfoToExtLineInfo( const LineInfo& rIn, PDFWriter::ExtLineInfo& rOut ); protected: - bool ImplNewFont() const; + bool ImplNewFont() const override; void ImplClearFontData(bool bNewFontLists) override; void ImplRefreshFontData(bool bNewFontLists) override; vcl::Region ClipToDeviceBounds(vcl::Region aRegion) const override; |