summaryrefslogtreecommitdiff
path: root/dbaccess/source/inc
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/source/inc
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/source/inc')
-rw-r--r--dbaccess/source/inc/OAuthenticationContinuation.hxx4
1 files changed, 2 insertions, 2 deletions
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