summaryrefslogtreecommitdiff
path: root/include/ucbhelper/interactionrequest.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-16 11:43:56 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-03-16 10:46:03 +0000
commit3d264450989cecdc59a2e64f46a0328432ba0d08 (patch)
tree6900674c4034a2f689950d551398390d0e801b17 /include/ucbhelper/interactionrequest.hxx
parent125c845f406fca336baea89614a5017f909bab40 (diff)
loplugin:constantfunction in ucbhelper
Change-Id: I80e00b5ac2621378801f89532ed88b377ef72b60 Reviewed-on: https://gerrit.libreoffice.org/23297 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/ucbhelper/interactionrequest.hxx')
-rw-r--r--include/ucbhelper/interactionrequest.hxx12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/ucbhelper/interactionrequest.hxx b/include/ucbhelper/interactionrequest.hxx
index 03122c18742f..08df5d700b85 100644
--- a/include/ucbhelper/interactionrequest.hxx
+++ b/include/ucbhelper/interactionrequest.hxx
@@ -399,8 +399,6 @@ public:
* @param bCanUseSystemCredentials indicates whether issuer of the
* authentication request can obtain and use system credentials
* for authentication.
- * @param bDefaultUseSystemCredentials specifies the default system
- * credentials usage preferred by the requesting client
*
* @see css::ucb::AuthenticationRequest
* @see css::ucb::RememberAuthentication
@@ -415,8 +413,7 @@ public:
const css::ucb::RememberAuthentication eDefaultRememberPasswordMode,
const css::uno::Sequence< css::ucb::RememberAuthentication > & rRememberAccountModes,
const css::ucb::RememberAuthentication eDefaultRememberAccountMode,
- bool bCanUseSystemCredentials,
- bool bDefaultUseSystemCredentials );
+ bool bCanUseSystemCredentials );
// XInterface
virtual css::uno::Any SAL_CALL
@@ -568,8 +565,7 @@ inline InteractionSupplyAuthentication::InteractionSupplyAuthentication(
const css::ucb::RememberAuthentication eDefaultRememberPasswordMode,
const css::uno::Sequence< css::ucb::RememberAuthentication > & rRememberAccountModes,
const css::ucb::RememberAuthentication eDefaultRememberAccountMode,
- bool bCanUseSystemCredentials,
- bool bDefaultUseSystemCredentials )
+ bool bCanUseSystemCredentials )
: InteractionContinuation( pRequest ),
m_aRememberPasswordModes( rRememberPasswordModes ),
m_aRememberAccountModes( rRememberAccountModes ),
@@ -582,8 +578,8 @@ inline InteractionSupplyAuthentication::InteractionSupplyAuthentication(
m_bCanSetPassword( bCanSetPassword ),
m_bCanSetAccount( bCanSetAccount ),
m_bCanUseSystemCredentials( bCanUseSystemCredentials ),
- m_bDefaultUseSystemCredentials( bDefaultUseSystemCredentials ),
- m_bUseSystemCredentials( bDefaultUseSystemCredentials && bCanUseSystemCredentials )
+ m_bDefaultUseSystemCredentials( false ),
+ m_bUseSystemCredentials( false )
{
}