#i106805# some exception safety (the real fix for this issue is in CWS dba32j, but this change here will make future such occurrences less severe)

This commit is contained in:
Frank Schoenheit [fs] 2009-11-13 14:04:26 +01:00
parent 32914ef1b3
commit 491822ddf2

View file

@ -2804,7 +2804,14 @@ void SAL_CALL OBoundControlModel::modified( const EventObject& _rEvent ) throw (
//--------------------------------------------------------------------
void OBoundControlModel::transferDbValueToControl( )
{
try
{
setControlValue( translateDbColumnToControlValue(), eDbColumnBinding );
}
catch( const Exception& )
{
DBG_UNHANDLED_EXCEPTION();
}
}
//------------------------------------------------------------------------------