diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 09:30:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-01-24 13:02:31 +0100 |
commit | 6239993d0da8e71af15428f502c364e932591bd6 (patch) | |
tree | 0bf399094751f7e4b614ed534f81690a6df52236 /uui/source | |
parent | e14fafaafb3500d65be9c1b69fcb86b31d36468c (diff) |
loplugin:constparams in ucb..xmlhelp
Change-Id: I3c1e0bfbba1a1849075500882133aac3899de5c8
Reviewed-on: https://gerrit.libreoffice.org/66834
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui/source')
-rw-r--r-- | uui/source/iahndl-authentication.cxx | 4 | ||||
-rw-r--r-- | uui/source/iahndl.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index d151a36138e7..6103f876e209 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -725,8 +725,8 @@ UUIInteractionHelper::handlePasswordRequest( } void -UUIInteractionHelper::handleAuthFallbackRequest( OUString & instructions, - OUString & url, +UUIInteractionHelper::handleAuthFallbackRequest( const OUString & instructions, + const OUString & url, uno::Sequence< uno::Reference< task::XInteractionContinuation > > const & rContinuations ) { uno::Reference<awt::XWindow> xParent = getParentXWindow(); diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx index 9614e4aa908c..4feb98d3fa5d 100644 --- a/uui/source/iahndl.hxx +++ b/uui/source/iahndl.hxx @@ -237,8 +237,8 @@ private: void handleAuthFallbackRequest( - OUString & instructions, - OUString & url, + const OUString & instructions, + const OUString & url, css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > const & rContinuations ); }; |