#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:
parent
32914ef1b3
commit
491822ddf2
1 changed files with 8 additions and 1 deletions
|
@ -2804,7 +2804,14 @@ void SAL_CALL OBoundControlModel::modified( const EventObject& _rEvent ) throw (
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
void OBoundControlModel::transferDbValueToControl( )
|
void OBoundControlModel::transferDbValueToControl( )
|
||||||
{
|
{
|
||||||
setControlValue( translateDbColumnToControlValue(), eDbColumnBinding );
|
try
|
||||||
|
{
|
||||||
|
setControlValue( translateDbColumnToControlValue(), eDbColumnBinding );
|
||||||
|
}
|
||||||
|
catch( const Exception& )
|
||||||
|
{
|
||||||
|
DBG_UNHANDLED_EXCEPTION();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue