summaryrefslogtreecommitdiff
path: root/forms/source/component
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2001-09-12 16:54:29 +0000
committerVladimir Glazounov <vg@openoffice.org>2001-09-12 16:54:29 +0000
commit8869177474a16872c6b2a980797b935b2e436611 (patch)
tree7c23b7967260f99ae519e32d4df8f2d44030c975 /forms/source/component
parent15616fe71621adbe0fb43426c2031aee5995549c (diff)
#92075# exception specification
Diffstat (limited to 'forms/source/component')
-rw-r--r--forms/source/component/Time.cxx8
-rw-r--r--forms/source/component/Time.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/forms/source/component/Time.cxx b/forms/source/component/Time.cxx
index af2b23a18996..d22578aad303 100644
--- a/forms/source/component/Time.cxx
+++ b/forms/source/component/Time.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Time.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: fs $ $Date: 2001-05-23 15:12:14 $
+ * last change: $Author: vg $ $Date: 2001-09-12 17:54:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -185,7 +185,7 @@ OTimeModel::~OTimeModel()
}
//------------------------------------------------------------------------------
-::rtl::OUString SAL_CALL OTimeModel::getServiceName()
+::rtl::OUString SAL_CALL OTimeModel::getServiceName() throw ( ::com::sun::star::uno::RuntimeException)
{
return FRM_COMPONENT_TIMEFIELD; // old (non-sun) name for compatibility !
}
@@ -252,7 +252,7 @@ sal_Bool SAL_CALL OTimeModel::convertFastPropertyValue(Any& _rConvertedValue, An
}
//------------------------------------------------------------------------------
-void SAL_CALL OTimeModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue)
+void SAL_CALL OTimeModel::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/Time.hxx b/forms/source/component/Time.hxx
index 415fbce2fce3..24813f8b48e3 100644
--- a/forms/source/component/Time.hxx
+++ b/forms/source/component/Time.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Time.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 17:54:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,14 +98,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(OTimeModel);