Kaydet (Commit) cbc72273 authored tarafından Michael Stahl's avatar Michael Stahl

fdo#60092: fix STL regression in SwInsertDBColAutoPilot::DataToDoc

(regression from f7d681dc)

Change-Id: Ida92854efe6ddffffb8fe10e5ef1f42c53747f40
üst 2ce2fafa
......@@ -1002,8 +1002,8 @@ void SwInsertDBColAutoPilot::DataToDoc( const Sequence<Any>& rSelection,
{
SwInsDBColumn aSrch( aLbTableCol.GetEntry( n ), 0 );
SwInsDBColumns::const_iterator it = aDBColumns.find( &aSrch );
if( it != aDBColumns.end() )
aColFlds[ n ] = *it;
if (it != aDBColumns.end())
aColFlds.push_back(*it);
else {
OSL_ENSURE( !this, "database column not found" );
}
......
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