summaryrefslogtreecommitdiff
path: root/extensions/workben/pythontest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/workben/pythontest.cxx')
-rw-r--r--extensions/workben/pythontest.cxx10
1 files changed, 5 insertions, 5 deletions
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" );
}
}