Kaydet (Commit) a3dbb7c2 authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS eforms3 (1.2.4); FILE MERGED

2004/11/29 16:34:26 dvo 1.2.4.1: #i34793# catch (and ignore) unkown exceptions
üst a6bc2a4a
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: clickableimage.cxx,v $ * $RCSfile: clickableimage.cxx,v $
* *
* $Revision: 1.2 $ * $Revision: 1.3 $
* *
* last change: $Author: obo $ $Date: 2004-11-16 10:41:28 $ * last change: $Author: rt $ $Date: 2004-12-10 17:12:27 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -373,7 +373,14 @@ namespace frm ...@@ -373,7 +373,14 @@ namespace frm
{ {
// if some outer component can provide an interaction handler, use it // if some outer component can provide an interaction handler, use it
Reference< XInteractionHandler > xHandler( m_pFeatureInterception->queryDispatch( "private:/InteractionHandler" ), UNO_QUERY ); Reference< XInteractionHandler > xHandler( m_pFeatureInterception->queryDispatch( "private:/InteractionHandler" ), UNO_QUERY );
implSubmit( rEvt, xHandler ); try
{
implSubmit( rEvt, xHandler );
}
catch( const Exception& )
{
// ignore
}
} }
break; break;
......
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