Kaydet (Commit) 13ff96fe authored tarafından Caolán McNamara's avatar Caolán McNamara

fix assert, names expected to be sorted

üst 4b596c2e
......@@ -590,7 +590,8 @@ sal_Bool SbaTableQueryBrowser::InitializeForm( const Reference< XPropertySet > &
aPropertyValues.put( aTransferProperties[i], pData->xObjectProperties->getPropertyValue( aTransferProperties[i] ) );
}
const ::std::vector< ::rtl::OUString > aNames( aPropertyValues.getNames() );
::std::vector< ::rtl::OUString > aNames( aPropertyValues.getNames() );
::std::sort(aNames.begin(), aNames.end());
Sequence< ::rtl::OUString > aPropNames( aNames.size() );
::std::copy( aNames.begin(), aNames.end(), aPropNames.getArray() );
......
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