diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-03 09:52:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-06 07:13:42 +0100 |
commit | 0d50804e1c0c0ea2a5cd73fa3fa2a9ff0a0e7048 (patch) | |
tree | ab861bba797a4610ffd5b482cc8fa4c4d5b59c35 /sdext | |
parent | 26e8b589b3f7716a80df7f3a9273e4967d9b0991 (diff) |
loplugin:constparams in various(2)
Change-Id: I533a7eb724b15e168a28dc92cd5962a39bc96e7c
Reviewed-on: https://gerrit.libreoffice.org/44313
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/inc/pdfparse.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/inc/pdfparse.hxx b/sdext/source/pdfimport/inc/pdfparse.hxx index b38c8ca35a9d..462cf46955fa 100644 --- a/sdext/source/pdfimport/inc/pdfparse.hxx +++ b/sdext/source/pdfimport/inc/pdfparse.hxx @@ -167,7 +167,7 @@ struct PDFContainer : public PDFEntry void cloneSubElements( std::vector<PDFEntry*>& rNewSubElements ) const; PDFObject* findObject( unsigned int nNumber, unsigned int nGeneration ) const; - PDFObject* findObject( PDFObjectRef* pRef ) const + PDFObject* findObject( PDFObjectRef const * pRef ) const { return findObject( pRef->m_nNumber, pRef->m_nGeneration ); } }; |