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
::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
......
......@@ -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 )
......
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