[Libreoffice-commits] .: connectivity/inc connectivity/source

Norbert Thiebaud nthiebaud at kemper.freedesktop.org
Sun Aug 14 10:15:14 PDT 2011


 connectivity/inc/connectivity/TTableHelper.hxx   |    2 +-
 connectivity/source/commontools/TTableHelper.cxx |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fbe20a2245bd6ccce6b37eedcb0a478d3bf59965
Author: Lionel Elie Mamane <lionel.mamane at gestman.lu>
Date:   Sun Aug 14 12:15:07 2011 -0500

    =class OTableHelper: typo in private member name: refreshFor*gei*nKeys

diff --git a/connectivity/inc/connectivity/TTableHelper.hxx b/connectivity/inc/connectivity/TTableHelper.hxx
index 432c8b7..63b91a5 100644
--- a/connectivity/inc/connectivity/TTableHelper.hxx
+++ b/connectivity/inc/connectivity/TTableHelper.hxx
@@ -90,7 +90,7 @@ namespace connectivity
         ::std::auto_ptr<OTableHelperImpl> m_pImpl;
 
         void refreshPrimaryKeys(TStringVector& _rKeys);
-        void refreshForgeinKeys(TStringVector& _rKeys);
+        void refreshForeignKeys(TStringVector& _rKeys);
 
     protected:
         /** creates the column collection for the table
diff --git a/connectivity/source/commontools/TTableHelper.cxx b/connectivity/source/commontools/TTableHelper.cxx
index 5d3027a..4ab42e6 100644
--- a/connectivity/source/commontools/TTableHelper.cxx
+++ b/connectivity/source/commontools/TTableHelper.cxx
@@ -358,7 +358,7 @@ void OTableHelper::refreshPrimaryKeys(TStringVector& _rNames)
     ::comphelper::disposeComponent(xResult);
 }
 // -------------------------------------------------------------------------
-void OTableHelper::refreshForgeinKeys(TStringVector& _rNames)
+void OTableHelper::refreshForeignKeys(TStringVector& _rNames)
 {
     Any aCatalog;
     if ( m_CatalogName.getLength() )
@@ -430,7 +430,7 @@ void OTableHelper::refreshKeys()
     if(!isNew())
     {
         refreshPrimaryKeys(aNames);
-        refreshForgeinKeys(aNames);
+        refreshForeignKeys(aNames);
         m_pKeys = createKeys(aNames);
     } // if(!isNew())
     else if (!m_pKeys )


More information about the Libreoffice-commits mailing list