[Libreoffice-commits] core.git: dbaccess/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sat Aug 29 09:38:16 UTC 2020


 dbaccess/source/core/dataaccess/datasource.cxx      |    4 ++--
 dbaccess/source/inc/OAuthenticationContinuation.hxx |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f2b8209743dbb0c512f2c50e77efb3b07c956619
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 13:14:31 2020 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:37:24 2020 +0200

    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 at collabora.co.uk>

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


More information about the Libreoffice-commits mailing list