diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-25 14:04:19 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-27 06:44:50 +0000 |
commit | 9870f02b310567c1d50c8e11a49afea5fdc549a0 (patch) | |
tree | fea702de7355228bd4b5facfaa99430b658897f1 /ucb | |
parent | 1485074d84f7804a2942d4942d7d194039948d05 (diff) |
loplugin:countusersofdefaultparams in tools..xmlsecurity
find methods with default params with only zero or one call site
Change-Id: Ie5b30f60e9fe00ba1acf0dfc79b005ded46f05a0
Reviewed-on: https://gerrit.libreoffice.org/27512
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/filglob.hxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/file/filtask.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filglob.hxx b/ucb/source/ucp/file/filglob.hxx index 2bbecb3a8756..d1e9a4a01fac 100644 --- a/ucb/source/ucp/file/filglob.hxx +++ b/ucb/source/ucp/file/filglob.hxx @@ -63,7 +63,7 @@ namespace fileaccess { extern osl::FileBase::RC osl_File_copy( const OUString& strPath, const OUString& strDestPath, - bool test = false ); + bool test ); /** * special move: @@ -84,7 +84,7 @@ namespace fileaccess { const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv, const OUString& aUncPath, BaseContent* pContent, - bool isHandled = false); + bool isHandled); // the physical URL of the object } // end namespace fileaccess diff --git a/ucb/source/ucp/file/filtask.hxx b/ucb/source/ucp/file/filtask.hxx index 9af0e04eaaa2..f2b0d89eab0c 100644 --- a/ucb/source/ucp/file/filtask.hxx +++ b/ucb/source/ucp/file/filtask.hxx @@ -94,7 +94,7 @@ namespace fileaccess } void SAL_CALL installError( sal_Int32 nErrorCode, - sal_Int32 nMinorCode = TASKHANDLER_NO_ERROR ) + sal_Int32 nMinorCode ) { m_nErrorCode = nErrorCode; m_nMinorCode = nMinorCode; |