diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 11:33:38 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2001-09-12 11:33:38 +0000 |
commit | 642d5f1e8bfa1b56c222b85c6f6e0d0d153a0c62 (patch) | |
tree | 77af1b65b0b9a6a0bea8b0ec7d725b52da175709 | |
parent | 78471c863b62114593277e656c3e3b524e46d10d (diff) |
#92075# exception specification
-rw-r--r-- | forms/source/component/Date.cxx | 8 | ||||
-rw-r--r-- | forms/source/component/Date.hxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/forms/source/component/Date.cxx b/forms/source/component/Date.cxx index b8078ca57..48623aa03 100644 --- a/forms/source/component/Date.cxx +++ b/forms/source/component/Date.cxx @@ -2,9 +2,9 @@ * * $RCSfile: Date.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: fs $ $Date: 2001-05-23 15:12:14 $ + * last change: $Author: vg $ $Date: 2001-09-12 12:33:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -169,7 +169,7 @@ StringSequence SAL_CALL ODateModel::getSupportedServiceNames() throw() } //------------------------------------------------------------------------------ -::rtl::OUString SAL_CALL ODateModel::getServiceName() +::rtl::OUString SAL_CALL ODateModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException) { return FRM_COMPONENT_DATEFIELD; // old (non-sun) name for compatibility ! } @@ -236,7 +236,7 @@ sal_Bool SAL_CALL ODateModel::convertFastPropertyValue(Any& _rConvertedValue, An } //------------------------------------------------------------------------------ -void SAL_CALL ODateModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue) +void SAL_CALL ODateModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue) throw ( ::com::sun::star::uno::Exception) { if (PROPERTY_ID_FORMATKEY == _nHandle) setFormatKeyPropertyValue(_rValue); diff --git a/forms/source/component/Date.hxx b/forms/source/component/Date.hxx index a5e35c723..eaf39014c 100644 --- a/forms/source/component/Date.hxx +++ b/forms/source/component/Date.hxx @@ -2,9 +2,9 @@ * * $RCSfile: Date.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: fs $ $Date: 2001-05-18 14:44:07 $ + * last change: $Author: vg $ $Date: 2001-09-12 12:29:28 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,14 +97,14 @@ public: virtual sal_Bool _commit(); // stario::XPersistObject - virtual ::rtl::OUString SAL_CALL getServiceName(); + virtual ::rtl::OUString SAL_CALL getServiceName() throw ( ::com::sun::star::uno::RuntimeException ); // ::com::sun::star::beans::XPropertySet virtual void SAL_CALL getFastPropertyValue(::com::sun::star::uno::Any& rValue, sal_Int32 nHandle ) const; 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); - 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); // ::com::sun::star::lang::XServiceInfo IMPLEMENTATION_NAME(ODateModel); |