#92075# exception specification

This commit is contained in:
Vladimir Glazounov
2001-09-12 16:46:54 +00:00
parent 17c4c4b85c
commit 15616fe716
6 changed files with 30 additions and 30 deletions

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: ImageControl.cxx,v $ * $RCSfile: ImageControl.cxx,v $
* *
* $Revision: 1.18 $ * $Revision: 1.19 $
* *
* last change: $Author: fs $ $Date: 2001-08-22 13:12:50 $ * last change: $Author: vg $ $Date: 2001-09-12 17:39:03 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -361,7 +361,7 @@ void OImageControlModel::getFastPropertyValue(Any& rValue, sal_Int32 nHandle) co
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
void OImageControlModel::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue) void OImageControlModel::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue) throw ( ::com::sun::star::uno::Exception)
{ {
switch (nHandle) switch (nHandle)
{ {
@@ -422,13 +422,13 @@ void OImageControlModel::fillProperties(
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
::rtl::OUString OImageControlModel::getServiceName() ::rtl::OUString OImageControlModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException)
{ {
return FRM_COMPONENT_IMAGECONTROL; // old (non-sun) name for compatibility ! return FRM_COMPONENT_IMAGECONTROL; // old (non-sun) name for compatibility !
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
void OImageControlModel::write(const Reference<XObjectOutputStream>& _rxOutStream) void OImageControlModel::write(const Reference<XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException)
{ {
// Basisklasse // Basisklasse
OBoundControlModel::write(_rxOutStream); OBoundControlModel::write(_rxOutStream);
@@ -442,7 +442,7 @@ void OImageControlModel::write(const Reference<XObjectOutputStream>& _rxOutStrea
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
void OImageControlModel::read(const Reference<XObjectInputStream>& _rxInStream) void OImageControlModel::read(const Reference<XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException)
{ {
OBoundControlModel::read(_rxInStream); OBoundControlModel::read(_rxInStream);
@@ -673,7 +673,7 @@ void OImageControlControl::implInsertGraphics()
// MouseListener // MouseListener
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
void OImageControlControl::mousePressed(const ::com::sun::star::awt::MouseEvent& e) void OImageControlControl::mousePressed(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException)
{ {
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
// Nur linke Maustaste // Nur linke Maustaste

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: ImageControl.hxx,v $ * $RCSfile: ImageControl.hxx,v $
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* *
* last change: $Author: fs $ $Date: 2001-08-22 13:12:43 $ * last change: $Author: vg $ $Date: 2001-09-12 17:34:25 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -117,7 +117,7 @@ public:
virtual ~OImageControlModel(); virtual ~OImageControlModel();
virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const; virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const;
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue); virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue) throw ( ::com::sun::star::uno::Exception);
virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue, sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue ) virtual sal_Bool SAL_CALL convertFastPropertyValue(::com::sun::star::uno::Any& rConvertedValue, ::com::sun::star::uno::Any& rOldValue, sal_Int32 nHandle, const ::com::sun::star::uno::Any& rValue )
throw(::com::sun::star::lang::IllegalArgumentException); throw(::com::sun::star::lang::IllegalArgumentException);
@@ -145,12 +145,12 @@ public:
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
// ::com::sun::star::io::XPersistObject // ::com::sun::star::io::XPersistObject
virtual ::rtl::OUString SAL_CALL getServiceName(); virtual ::rtl::OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream); virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream); virtual void SAL_CALL read(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectInputStream>& _rxInStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException);
// ::com::sun::star::form::XImageProducerSupplier // ::com::sun::star::form::XImageProducerSupplier
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageProducer> SAL_CALL getImageProducer() { return m_xImageProducer; } virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageProducer> SAL_CALL getImageProducer() throw ( ::com::sun::star::uno::RuntimeException) { return m_xImageProducer; }
// ::comphelper::OAggregationArrayUsageHelper // ::comphelper::OAggregationArrayUsageHelper
virtual void fillProperties( virtual void fillProperties(
@@ -186,10 +186,10 @@ public:
virtual StringSequence SAL_CALL getSupportedServiceNames() throw(); virtual StringSequence SAL_CALL getSupportedServiceNames() throw();
// ::com::sun::star::awt::XMouseListener // ::com::sun::star::awt::XMouseListener
virtual void SAL_CALL mousePressed(const ::com::sun::star::awt::MouseEvent& e); virtual void SAL_CALL mousePressed(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& e) { } virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& e) { } virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& e) { } virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& e) throw ( ::com::sun::star::uno::RuntimeException) { }
// ::com::sun::star::awt::XControl // ::com::sun::star::awt::XControl
virtual void SAL_CALL createPeer(const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit>& _rToolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer>& _rParent) throw(::com::sun::star::uno::RuntimeException); virtual void SAL_CALL createPeer(const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit>& _rToolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer>& _rParent) throw(::com::sun::star::uno::RuntimeException);

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: Numeric.cxx,v $ * $RCSfile: Numeric.cxx,v $
* *
* $Revision: 1.4 $ * $Revision: 1.5 $
* *
* last change: $Author: fs $ $Date: 2001-04-02 10:28:06 $ * last change: $Author: vg $ $Date: 2001-09-12 17:43:45 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -197,7 +197,7 @@ void ONumericModel::fillProperties(
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
::rtl::OUString SAL_CALL ONumericModel::getServiceName() ::rtl::OUString SAL_CALL ONumericModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException)
{ {
return FRM_COMPONENT_NUMERICFIELD; // old (non-sun) name for compatibility ! return FRM_COMPONENT_NUMERICFIELD; // old (non-sun) name for compatibility !
} }

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: Numeric.hxx,v $ * $RCSfile: Numeric.hxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: oj $ $Date: 2000-11-23 08:48:15 $ * last change: $Author: vg $ $Date: 2001-09-12 17:42:09 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -101,7 +101,7 @@ public:
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper(); virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
// ::com::sun::star::io::XPersistObject // ::com::sun::star::io::XPersistObject
virtual ::rtl::OUString SAL_CALL getServiceName(); virtual ::rtl::OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException);
// starform::XReset // starform::XReset
virtual void _reset(); virtual void _reset();

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: Pattern.cxx,v $ * $RCSfile: Pattern.cxx,v $
* *
* $Revision: 1.4 $ * $Revision: 1.5 $
* *
* last change: $Author: th $ $Date: 2001-05-11 09:46:33 $ * last change: $Author: vg $ $Date: 2001-09-12 17:46:54 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -198,7 +198,7 @@ void OPatternModel::fillProperties(
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
::rtl::OUString SAL_CALL OPatternModel::getServiceName() ::rtl::OUString SAL_CALL OPatternModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException)
{ {
return FRM_COMPONENT_PATTERNFIELD; // old (non-sun) name for compatibility ! return FRM_COMPONENT_PATTERNFIELD; // old (non-sun) name for compatibility !
} }

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: Pattern.hxx,v $ * $RCSfile: Pattern.hxx,v $
* *
* $Revision: 1.3 $ * $Revision: 1.4 $
* *
* last change: $Author: oj $ $Date: 2000-11-23 08:48:15 $ * last change: $Author: vg $ $Date: 2001-09-12 17:45:33 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -102,7 +102,7 @@ public:
virtual StringSequence SAL_CALL getSupportedServiceNames() throw(); virtual StringSequence SAL_CALL getSupportedServiceNames() throw();
// ::com::sun::star::io::XPersistObject // ::com::sun::star::io::XPersistObject
virtual ::rtl::OUString SAL_CALL getServiceName(); virtual ::rtl::OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException);
// starform::XReset // starform::XReset
virtual void _reset(); virtual void _reset();