summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorSzymon Kłos <eszkadev@gmail.com>2015-10-03 21:15:13 +0200
committerSzymon Kłos <eszkadev@gmail.com>2015-10-05 19:24:07 +0200
commit8e8247975ea37b3c335b1346c258b4d6260e1c39 (patch)
tree450e081b828353aedc3a7a455a5b5bd4971a4ce9 /svtools
parent955881ea30b5c88b096187712cc65d976e976c67 (diff)
Temporary remember password even if persistent password storing is disabled
Change-Id: I2ca98889b2c31c40a84348a55d85750f7c031a92
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/dialogs/ServerDetailsControls.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/dialogs/ServerDetailsControls.cxx b/svtools/source/dialogs/ServerDetailsControls.cxx
index 22edbf2155f1..26fe15fda529 100644
--- a/svtools/source/dialogs/ServerDetailsControls.cxx
+++ b/svtools/source/dialogs/ServerDetailsControls.cxx
@@ -434,7 +434,7 @@ IMPL_LINK_NOARG_TYPED( CmisDetailsContainer, RefreshReposHdl, Button*, void )
// temporary remember the password
try
{
- if( xMasterPasswd->isPersistentStoringAllowed() && !sUrl.isEmpty() && !m_sUsername.isEmpty() && !m_sPassword.isEmpty() )
+ if( !sUrl.isEmpty() && !m_sUsername.isEmpty() && !m_sPassword.isEmpty() )
{
Reference< XInteractionHandler > xInteractionHandler(
InteractionHandler::createWithParent( xContext, 0 ),