Kaydet (Commit) fbe20a22 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane Kaydeden (comit) Norbert Thiebaud

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

üst ddafafe5
...@@ -90,7 +90,7 @@ namespace connectivity ...@@ -90,7 +90,7 @@ namespace connectivity
::std::auto_ptr<OTableHelperImpl> m_pImpl; ::std::auto_ptr<OTableHelperImpl> m_pImpl;
void refreshPrimaryKeys(TStringVector& _rKeys); void refreshPrimaryKeys(TStringVector& _rKeys);
void refreshForgeinKeys(TStringVector& _rKeys); void refreshForeignKeys(TStringVector& _rKeys);
protected: protected:
/** creates the column collection for the table /** creates the column collection for the table
......
...@@ -358,7 +358,7 @@ void OTableHelper::refreshPrimaryKeys(TStringVector& _rNames) ...@@ -358,7 +358,7 @@ void OTableHelper::refreshPrimaryKeys(TStringVector& _rNames)
::comphelper::disposeComponent(xResult); ::comphelper::disposeComponent(xResult);
} }
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
void OTableHelper::refreshForgeinKeys(TStringVector& _rNames) void OTableHelper::refreshForeignKeys(TStringVector& _rNames)
{ {
Any aCatalog; Any aCatalog;
if ( m_CatalogName.getLength() ) if ( m_CatalogName.getLength() )
...@@ -430,7 +430,7 @@ void OTableHelper::refreshKeys() ...@@ -430,7 +430,7 @@ void OTableHelper::refreshKeys()
if(!isNew()) if(!isNew())
{ {
refreshPrimaryKeys(aNames); refreshPrimaryKeys(aNames);
refreshForgeinKeys(aNames); refreshForeignKeys(aNames);
m_pKeys = createKeys(aNames); m_pKeys = createKeys(aNames);
} // if(!isNew()) } // if(!isNew())
else if (!m_pKeys ) else if (!m_pKeys )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment