From 4fca3aac0b46ac0d29bccb474eb7b85f5fece34b Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Wed, 4 Feb 2004 11:26:15 +0000 Subject: INTEGRATION: CWS ooo20031216 (1.2.126); FILE MERGED 2003/12/28 12:08:35 waratah 1.2.126.1: #i23913# remove TRY CATCH macros --- extensions/workben/pythontest.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'extensions/workben/pythontest.cxx') diff --git a/extensions/workben/pythontest.cxx b/extensions/workben/pythontest.cxx index 27cfe7340d8c..82a756f5cae2 100644 --- a/extensions/workben/pythontest.cxx +++ b/extensions/workben/pythontest.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pythontest.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2003-04-15 16:20:37 $ + * last change: $Author: hr $ $Date: 2004-02-04 12:25:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -332,14 +332,14 @@ void CmdDebugger::cmdLine() } else if( ! strncmp( pcLine , "idv" , 3) ) { - TRY { + try { UsrAny any = (*m_pInvokationRef)->getValue( PCHAR_TO_USTRING( &(pcLine[4]) ) ); dumpVarToStream( &(pcLine[4]) , any , stderr ); } - CATCH(UnknownPropertyException,e) { + catch(UnknownPropertyException& e ) { fprintf( stderr, "UnknownPropertyException\n" ); } - CATCH(IllegalArgumentException,e) { + catch(IllegalArgumentException& e ) { fprintf( stderr, "IllegalArgumentException\n" ); } } -- cgit v1.2.3