diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-11 13:54:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-13 08:34:49 +0200 |
commit | 7a5d2b3cdb448998e6aef1f12f0a70c400a434d2 (patch) | |
tree | 924cfa383240c506613f6b64282bf73632f10b99 /uui/source | |
parent | 412215fbc5a71afff7ee3b539852ed92c55e11bc (diff) |
loplugin:returnconstant in unoxml,uui
Change-Id: Iac240f59acf8404fe5439a7e450c048df0d7a54e
Reviewed-on: https://gerrit.libreoffice.org/58879
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 | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index 5aedeba76a04..d151a36138e7 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -724,7 +724,7 @@ UUIInteractionHelper::handlePasswordRequest( return false; } -bool +void UUIInteractionHelper::handleAuthFallbackRequest( OUString & instructions, OUString & url, uno::Sequence< uno::Reference< task::XInteractionContinuation > > const & rContinuations ) @@ -741,8 +741,6 @@ UUIInteractionHelper::handleAuthFallbackRequest( OUString & instructions, xAuthFallback->setCode(dlg.GetCode()); xAuthFallback->select( ); } - - return true; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx index 056b66103ad3..9bb7fda8909b 100644 --- a/uui/source/iahndl.hxx +++ b/uui/source/iahndl.hxx @@ -235,7 +235,7 @@ private: const OUString& i_rServiceName ) const; - bool + void handleAuthFallbackRequest( OUString & instructions, OUString & url, |