From f2b8209743dbb0c512f2c50e77efb3b07c956619 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Fri, 28 Aug 2020 13:14:31 +0200 Subject: 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 --- dbaccess/source/inc/OAuthenticationContinuation.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess/source/inc/OAuthenticationContinuation.hxx') 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 -- cgit