diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-01 10:09:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-01 12:30:55 +0200 |
commit | 871035d72aa0d59b42997056b16d889dd1371ce8 (patch) | |
tree | 3e4fc7b8ad2808bc0c7f258370d41d69f635b282 /xmlsecurity | |
parent | d09b943fc4292d47a9d93f6e423cd0eafbd799ae (diff) |
loplugin:constparams in various
Change-Id: Id15f3562f42afa6c679cea3c839172557ead0395
Reviewed-on: https://gerrit.libreoffice.org/40624
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/inc/certificatechooser.hxx | 4 | ||||
-rw-r--r-- | xmlsecurity/source/dialogs/certificatechooser.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/inc/certificatechooser.hxx b/xmlsecurity/inc/certificatechooser.hxx index 009d20e4ea2f..176d647fb754 100644 --- a/xmlsecurity/inc/certificatechooser.hxx +++ b/xmlsecurity/inc/certificatechooser.hxx @@ -74,8 +74,8 @@ private: public: CertificateChooser(vcl::Window* pParent, - css::uno::Reference< css::uno::XComponentContext>& rxCtx, - std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > >& rxSecurityContexts); + css::uno::Reference< css::uno::XComponentContext> const & rxCtx, + std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > const & rxSecurityContexts); virtual ~CertificateChooser() override; virtual void dispose() override; diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx b/xmlsecurity/source/dialogs/certificatechooser.cxx index 828823974182..701367474f1f 100644 --- a/xmlsecurity/source/dialogs/certificatechooser.cxx +++ b/xmlsecurity/source/dialogs/certificatechooser.cxx @@ -35,8 +35,8 @@ using namespace css; CertificateChooser::CertificateChooser(vcl::Window* _pParent, - uno::Reference<uno::XComponentContext>& _rxCtx, - std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > >& rxSecurityContexts) + uno::Reference<uno::XComponentContext> const & _rxCtx, + std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > > const & rxSecurityContexts) : ModalDialog(_pParent, "SelectCertificateDialog", "xmlsec/ui/selectcertificatedialog.ui"), mvUserData() { |