diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-10-17 09:12:08 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-10-17 09:12:08 +0000 |
commit | bdce6d9e56000865834b0fffb5ff542210440ea9 (patch) | |
tree | 50e9c099a416228ccf63d70519c79d7099e0ad99 /svx/source/unodraw/unoshap2.cxx | |
parent | af00b72d72a0687c5ca9840b8986552cc7bb7400 (diff) |
#65293# exception specification
Diffstat (limited to 'svx/source/unodraw/unoshap2.cxx')
-rw-r--r-- | svx/source/unodraw/unoshap2.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/unodraw/unoshap2.cxx b/svx/source/unodraw/unoshap2.cxx index 1c1b0a9a66a0..4589c9e3e9cb 100644 --- a/svx/source/unodraw/unoshap2.cxx +++ b/svx/source/unodraw/unoshap2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoshap2.cxx,v $ * - * $Revision: 1.32 $ + * $Revision: 1.33 $ * - * last change: $Author: cl $ $Date: 2001-07-10 07:49:48 $ + * last change: $Author: vg $ $Date: 2001-10-17 10:12:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -186,12 +186,12 @@ uno::Any SAL_CALL SvxShapeGroup::queryAggregation( const uno::Type & rType ) return aAny; } -void SAL_CALL SvxShapeGroup::acquire() throw(uno::RuntimeException) +void SAL_CALL SvxShapeGroup::acquire() throw ( ) { SvxShape::acquire(); } -void SAL_CALL SvxShapeGroup::release() throw(uno::RuntimeException) +void SAL_CALL SvxShapeGroup::release() throw ( ) { SvxShape::release(); } @@ -463,12 +463,12 @@ uno::Any SAL_CALL SvxShapeConnector::queryAggregation( const uno::Type & rType ) return aAny; } -void SAL_CALL SvxShapeConnector::acquire() throw(uno::RuntimeException) +void SAL_CALL SvxShapeConnector::acquire() throw ( ) { SvxShapeText::acquire(); } -void SAL_CALL SvxShapeConnector::release() throw(uno::RuntimeException) +void SAL_CALL SvxShapeConnector::release() throw ( ) { SvxShapeText::release(); } @@ -645,12 +645,12 @@ uno::Any SAL_CALL SvxShapeControl::queryAggregation( const uno::Type & rType ) return aAny; } -void SAL_CALL SvxShapeControl::acquire() throw(uno::RuntimeException) +void SAL_CALL SvxShapeControl::acquire() throw ( ) { SvxShapeText::acquire(); } -void SAL_CALL SvxShapeControl::release() throw(uno::RuntimeException) +void SAL_CALL SvxShapeControl::release() throw ( ) { SvxShapeText::release(); } |