summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-28 13:14:31 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-08-29 11:37:24 +0200
commitf2b8209743dbb0c512f2c50e77efb3b07c956619 (patch)
treed2b77208dce80ea34dc42e5ddac72676848b11cc /dbaccess
parent74b716c62c55d1d3a65348b15d8b91e68b38f8c0 (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: Ie6f03d64818ca88ada6e929dc061be851451a75c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101611 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/dataaccess/datasource.cxx4
-rw-r--r--dbaccess/source/inc/OAuthenticationContinuation.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/core/dataaccess/datasource.cxx b/dbaccess/source/core/dataaccess/datasource.cxx
index 002d01b21bb2..7398253f576f 100644
--- a/dbaccess/source/core/dataaccess/datasource.cxx
+++ b/dbaccess/source/core/dataaccess/datasource.cxx
@@ -180,7 +180,7 @@ void SAL_CALL FlushNotificationAdapter::disposing( const EventObject& Source )
}
OAuthenticationContinuation::OAuthenticationContinuation()
- :m_bRemberPassword(true), // TODO: a meaningful default
+ :m_bRememberPassword(true), // TODO: a meaningful default
m_bCanSetUserName(true)
{
}
@@ -226,7 +226,7 @@ Sequence< RememberAuthentication > SAL_CALL OAuthenticationContinuation::getReme
void SAL_CALL OAuthenticationContinuation::setRememberPassword( RememberAuthentication _eRemember )
{
- m_bRemberPassword = (RememberAuthentication_NO != _eRemember);
+ m_bRememberPassword = (RememberAuthentication_NO != _eRemember);
}
sal_Bool SAL_CALL OAuthenticationContinuation::canSetAccount( )
diff --git a/dbaccess/source/inc/OAuthenticationContinuation.hxx b/dbaccess/source/inc/OAuthenticationContinuation.hxx
index ce933b31b545..0812c46f8baa 100644
--- a/dbaccess/source/inc/OAuthenticationContinuation.hxx
+++ b/dbaccess/source/inc/OAuthenticationContinuation.hxx
@@ -35,7 +35,7 @@ namespace dbaccess
class OOO_DLLPUBLIC_DBA OAuthenticationContinuation :
public comphelper::OInteraction< css::ucb::XInteractionSupplyAuthentication >
{
- bool m_bRemberPassword : 1; // remember the password for this session ?
+ bool m_bRememberPassword : 1; // remember the password for this session ?
bool m_bCanSetUserName;
OUString m_sUser; // the user
@@ -60,7 +60,7 @@ public:
void setCanChangeUserName( bool bVal ) { m_bCanSetUserName = bVal; }
const OUString& getUser() const { return m_sUser; }
const OUString& getPassword() const { return m_sPassword; }
- bool getRememberPassword() const { return m_bRemberPassword; }
+ bool getRememberPassword() const { return m_bRememberPassword; }
};
} // namespace dbaccess