summaryrefslogtreecommitdiff
path: root/forms/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-12-10 16:12:27 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-12-10 16:12:27 +0000
commita3dbb7c2665e91e66292080ce8c2dac1930988b0 (patch)
tree48b0310d369c4d3fd9d7835aaf6149ffbe8ab3b4 /forms/source
parenta6bc2a4a60f2cdeb714bc5c65aa18bff0b1ccb66 (diff)
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
Diffstat (limited to 'forms/source')
-rw-r--r--forms/source/component/clickableimage.cxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/forms/source/component/clickableimage.cxx b/forms/source/component/clickableimage.cxx
index fc418b07cdd9..b286ede9ccc8 100644
--- a/forms/source/component/clickableimage.cxx
+++ b/forms/source/component/clickableimage.cxx
@@ -2,9 +2,9 @@
*
* $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
* either of the following licenses
@@ -373,7 +373,14 @@ namespace frm
{
// if some outer component can provide an interaction handler, use it
Reference< XInteractionHandler > xHandler( m_pFeatureInterception->queryDispatch( "private:/InteractionHandler" ), UNO_QUERY );
- implSubmit( rEvt, xHandler );
+ try
+ {
+ implSubmit( rEvt, xHandler );
+ }
+ catch( const Exception& )
+ {
+ // ignore
+ }
}
break;