summaryrefslogtreecommitdiff
path: root/UnoControls/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 11:27:12 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 11:27:12 +0000
commit75c0ccd925699ac7210eac89b2b9f59af566c797 (patch)
treeb70fc8a1a125e4cae7e7bbe04b0443f35c1610ad /UnoControls/source
parent56ef51415f33966893a3b6eedd4277ba61d2ec86 (diff)
INTEGRATION: CWS ooo20031216 (1.3.26); FILE MERGED
2003/12/27 22:21:40 waratah 1.3.26.1: TRY: Remove TRY CATCH macros out of commented out code
Diffstat (limited to 'UnoControls/source')
-rw-r--r--UnoControls/source/base/multiplexer.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/UnoControls/source/base/multiplexer.cxx b/UnoControls/source/base/multiplexer.cxx
index 0d2bcad6d4ac..cb87889d223b 100644
--- a/UnoControls/source/base/multiplexer.cxx
+++ b/UnoControls/source/base/multiplexer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: multiplexer.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: vg $ $Date: 2003-06-12 10:43:38 $
+ * last change: $Author: hr $ $Date: 2004-02-04 12:27:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -338,15 +338,14 @@ void OMRCListenerMultiplexerHelper::focusGained(const FocusEvent& aEvent ) throw
if( aIt.hasMoreElements() )
{
XFocusListener * pListener = (XFocusListener *)aIt.next();
- TRY
+ try
{
pListener->focusGained( aEvt );
}
- CATCH( RuntimeException, e )
+ catch( RuntimeException, e )
{
// ignore all usr system exceptions from the listener
}
- END_CATCH;
}
}
}