diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-01 09:51:02 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-02 05:34:49 +0000 |
commit | 6c87b028406070332ab1c37dde323b1678cdf8e6 (patch) | |
tree | 51cd2bffdc152c02f7d72f3e98b450f84eb1c6c0 /sdext/source/pdfimport/inc | |
parent | 389b08190092f9a9103b3ac098994ec83b2d0bfa (diff) |
loplugin:countusersofdefaultparams in sd
Change-Id: I848d9b555a26e9d343efdfaaaec44a2c7d8be5b5
Reviewed-on: https://gerrit.libreoffice.org/27765
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sdext/source/pdfimport/inc')
-rw-r--r-- | sdext/source/pdfimport/inc/pdfparse.hxx | 2 | ||||
-rw-r--r-- | sdext/source/pdfimport/inc/wrapper.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/pdfimport/inc/pdfparse.hxx b/sdext/source/pdfimport/inc/pdfparse.hxx index 615ee5d2c84d..09a4e171dc2c 100644 --- a/sdext/source/pdfimport/inc/pdfparse.hxx +++ b/sdext/source/pdfimport/inc/pdfparse.hxx @@ -210,7 +210,7 @@ struct PDFStream : public PDFEntry virtual bool emit( EmitContext& rWriteContext ) const override; virtual PDFEntry* clone() const override; - unsigned int getDictLength( const PDFContainer* pObjectContainer = nullptr ) const; // get contents of the "Length" entry of the dict + unsigned int getDictLength( const PDFContainer* pObjectContainer ) const; // get contents of the "Length" entry of the dict }; struct PDFTrailer : public PDFContainer diff --git a/sdext/source/pdfimport/inc/wrapper.hxx b/sdext/source/pdfimport/inc/wrapper.hxx index 6bafce4939d7..0feaaa306eef 100644 --- a/sdext/source/pdfimport/inc/wrapper.hxx +++ b/sdext/source/pdfimport/inc/wrapper.hxx @@ -41,7 +41,7 @@ namespace pdfi const OUString& rPwd, const css::uno::Reference< css::uno::XComponentContext >& xContext, - const OUString& rFilterOptions = OUString()); + const OUString& rFilterOptions); bool xpdf_ImportFromStream( const css::uno::Reference< css::io::XInputStream >& xInput, const ContentSinkSharedPtr& rSink, @@ -50,7 +50,7 @@ namespace pdfi const OUString& rPwd, const css::uno::Reference< css::uno::XComponentContext >& xContext, - const OUString& rFilterOptions = OUString() ); + const OUString& rFilterOptions ); } #endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX |