From 75c0ccd925699ac7210eac89b2b9f59af566c797 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 4 Feb 2004 11:27:12 +0000
Subject: 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
---
UnoControls/source/base/multiplexer.cxx | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
(limited to 'UnoControls')
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;
}
}
}
--
cgit