diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-15 14:48:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-17 15:07:07 +0200 |
commit | f9d5da8b491e30a08fa6996164e12e4d8715af46 (patch) | |
tree | 2362d2c036744f419757f0a56d33c61531e6a112 /vcl/source/gdi | |
parent | 8914595d4623390e4bac9ebbdf0d5ae9ab69aa8a (diff) |
loplugin:unusedfields in vcl part2
Change-Id: Icd02f63e9738c0bb91348e2084649f9edc281e67
Reviewed-on: https://gerrit.libreoffice.org/38833
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.cxx | 8 | ||||
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.hxx | 2 | ||||
-rw-r--r-- | vcl/source/gdi/pngread.cxx | 4 |
3 files changed, 1 insertions, 13 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx index 140b4903991f..bd46a9289057 100644 --- a/vcl/source/gdi/pdfwriter_impl.cxx +++ b/vcl/source/gdi/pdfwriter_impl.cxx @@ -1129,13 +1129,11 @@ PDFWriterImpl::PDFPage::PDFPage( PDFWriterImpl* pWriter, double nPageWidth, doub m_nPageHeight( nPageHeight ), m_eOrientation( eOrientation ), m_nPageObject( 0 ), // invalid object number - m_nPageIndex( -1 ), // invalid index m_nStreamLengthObject( 0 ), m_nBeginStreamPos( 0 ), m_eTransition( PDFWriter::PageTransition::Regular ), m_nTransTime( 0 ), - m_nDuration( 0 ), - m_bHasWidgets( false ) + m_nDuration( 0 ) { // object ref must be only ever updated in emit() m_nPageObject = m_pWriter->createObject(); @@ -2259,7 +2257,6 @@ void PDFWriterImpl::newPage( double nPageWidth, double nPageHeight, PDFWriter::O endPage(); m_nCurrentPage = m_aPages.size(); m_aPages.push_back( PDFPage(this, nPageWidth, nPageHeight, eOrientation ) ); - m_aPages.back().m_nPageIndex = m_nCurrentPage; m_aPages.back().beginStream(); // setup global graphics state @@ -13552,9 +13549,6 @@ sal_Int32 PDFWriterImpl::createControl( const PDFWriter::AnyWidget& rControl, sa // insert widget to page's annotation list m_aPages[ nPageNr ].m_aAnnotations.push_back( rNewWidget.m_nObject ); - // mark page as having widgets - m_aPages[ nPageNr ].m_bHasWidgets = true; - return nNewWidget; } diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx index e356024106c9..50c7e157b29f 100644 --- a/vcl/source/gdi/pdfwriter_impl.hxx +++ b/vcl/source/gdi/pdfwriter_impl.hxx @@ -139,7 +139,6 @@ public: double m_nPageHeight; // in inch/72 PDFWriter::Orientation m_eOrientation; sal_Int32 m_nPageObject; - sal_Int32 m_nPageIndex; std::vector<sal_Int32> m_aStreamObjects; sal_Int32 m_nStreamLengthObject; sal_uInt64 m_nBeginStreamPos; @@ -148,7 +147,6 @@ public: PDFWriter::PageTransition m_eTransition; sal_uInt32 m_nTransTime; sal_uInt32 m_nDuration; - bool m_bHasWidgets; PDFPage( PDFWriterImpl* pWriter, double nPageWidth, double nPageHeight, PDFWriter::Orientation eOrientation ); ~PDFPage(); diff --git a/vcl/source/gdi/pngread.cxx b/vcl/source/gdi/pngread.cxx index 40d4085f56ff..9bebfb324d85 100644 --- a/vcl/source/gdi/pngread.cxx +++ b/vcl/source/gdi/pngread.cxx @@ -124,7 +124,6 @@ private: bool mbzCodecInUse : 1; bool mbStatus : 1; bool mbIDAT : 1; // true if finished with enough IDAT chunks - bool mbGamma : 1; // true if Gamma Correction available bool mbpHYs : 1; // true if physical size of pixel available bool mbIgnoreGammaChunk : 1; @@ -202,7 +201,6 @@ PNGReaderImpl::PNGReaderImpl( SvStream& rPNGStream ) mbzCodecInUse ( false ), mbStatus( true ), mbIDAT( false ), - mbGamma ( false ), mbpHYs ( false ), mbIgnoreGammaChunk ( false ), #if OSL_DEBUG_LEVEL > 0 @@ -818,8 +816,6 @@ void PNGReaderImpl::ImplGetGamma() if ( fInvGamma != 1.0 ) { - mbGamma = true; - if ( mpColorTable == mpDefaultColorTable ) mpColorTable = new sal_uInt8[ 256 ]; |