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

Julien Nabet serval2412 at yahoo.fr
Sun Jul 2 12:30:52 UTC 2017


 connectivity/source/drivers/file/FConnection.cxx |    2 +-
 connectivity/source/inc/file/FConnection.hxx     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b2607c28a6a52d320bf3694783ee93e71f6816df
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Jul 2 13:53:54 2017 +0200

    Typo: isCaseSensitveExtension->isCaseSensitiveExtension
    
    Change-Id: Ifcd0a93fc8f3e95f7e0e8d518b5d6fbb5ab0a514
    Reviewed-on: https://gerrit.libreoffice.org/39448
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/connectivity/source/drivers/file/FConnection.cxx b/connectivity/source/drivers/file/FConnection.cxx
index 2d654cb49842..b1745adb8420 100644
--- a/connectivity/source/drivers/file/FConnection.cxx
+++ b/connectivity/source/drivers/file/FConnection.cxx
@@ -83,7 +83,7 @@ void SAL_CALL OConnection::release() throw()
 
 bool OConnection::matchesExtension( const OUString& _rExt ) const
 {
-    if ( isCaseSensitveExtension() )
+    if ( isCaseSensitiveExtension() )
         return ( getExtension() == _rExt );
 
     OUString sMyExtension( getExtension().toAsciiLowerCase() );
diff --git a/connectivity/source/inc/file/FConnection.hxx b/connectivity/source/inc/file/FConnection.hxx
index 09fca405ed27..9521c948f543 100644
--- a/connectivity/source/inc/file/FConnection.hxx
+++ b/connectivity/source/inc/file/FConnection.hxx
@@ -126,7 +126,7 @@ namespace connectivity
             bool                matchesExtension( const OUString& _rExt ) const;
 
             const OUString&    getExtension()            const { return m_aFilenameExtension; }
-            bool         isCaseSensitveExtension()   const { return m_bCaseSensitiveExtension; }
+            bool         isCaseSensitiveExtension()   const { return m_bCaseSensitiveExtension; }
             OFileDriver*     getDriver()                 const { return m_pDriver; }
             bool         showDeleted()               const { return m_bShowDeleted; }
             bool         isCheckEnabled()            const { return m_bCheckSQL92; }


More information about the Libreoffice-commits mailing list