diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-05 13:03:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-08 08:29:03 +0200 |
commit | 185ed3ddb8c01ee4465ce559e37113824f57b5c7 (patch) | |
tree | 596455ca4b9dc85666efbf06a1e1e0a3eec3ee2d /include/ucbhelper | |
parent | d33e262a244f351febc9dbe605b05f76cb834eeb (diff) |
teach loplugin:constantparam about simple constructor calls
Change-Id: I7d2a28ab5951fbdb5a427c84e9ac4c1e32ecf9f9
Reviewed-on: https://gerrit.libreoffice.org/37280
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper')
-rw-r--r-- | include/ucbhelper/simpleauthenticationrequest.hxx | 2 | ||||
-rw-r--r-- | include/ucbhelper/simplenameclashresolverequest.hxx | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/include/ucbhelper/simpleauthenticationrequest.hxx b/include/ucbhelper/simpleauthenticationrequest.hxx index f1dad91163ae..b6b2f870f6a6 100644 --- a/include/ucbhelper/simpleauthenticationrequest.hxx +++ b/include/ucbhelper/simpleauthenticationrequest.hxx @@ -84,7 +84,6 @@ public: * a previous try). * @param rPassword contains a password, if available (for instance from * a previous try). - * @param rAccount contains an account, if applicable. * @param bAllowUseSystemCredentials specifies if requesting client is * able to obtain and use system credentials for authentication */ @@ -93,7 +92,6 @@ public: const OUString & rRealm, const OUString & rUserName, const OUString & rPassword, - const OUString & rAccount, bool bAllowUseSystemCredentials, bool bAllowSessionStoring = true ); diff --git a/include/ucbhelper/simplenameclashresolverequest.hxx b/include/ucbhelper/simplenameclashresolverequest.hxx index cdc5e19766e6..3e7b1fef884f 100644 --- a/include/ucbhelper/simplenameclashresolverequest.hxx +++ b/include/ucbhelper/simplenameclashresolverequest.hxx @@ -52,12 +52,9 @@ public: * @param rTargetFolderURL contains the URL of the folder that contains * the clashing resource. * @param rClashingName contains the clashing name. - * @param rProposedNewName contains a proposal for the new name or is - * empty. */ SimpleNameClashResolveRequest( const OUString & rTargetFolderURL, - const OUString & rClashingName, - const OUString & rProposedNewName ); + const OUString & rClashingName ); /** * This method returns the new name that was supplied by the interaction * handler. |