diff options
Diffstat (limited to 'forms/source/component/FixedText.cxx')
-rw-r--r-- | forms/source/component/FixedText.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/forms/source/component/FixedText.cxx b/forms/source/component/FixedText.cxx index 01315f980a09..3509a9d42c58 100644 --- a/forms/source/component/FixedText.cxx +++ b/forms/source/component/FixedText.cxx @@ -62,7 +62,7 @@ OFixedTextModel::~OFixedTextModel( ) IMPLEMENT_DEFAULT_CLONING( OFixedTextModel ) -css::uno::Sequence<OUString> SAL_CALL OFixedTextModel::getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) +css::uno::Sequence<OUString> SAL_CALL OFixedTextModel::getSupportedServiceNames() { css::uno::Sequence<OUString> aSupported = OControlModel::getSupportedServiceNames(); aSupported.realloc(aSupported.getLength() + 2); @@ -81,14 +81,13 @@ void OFixedTextModel::describeAggregateProperties( Sequence< Property >& _rAggre } -OUString SAL_CALL OFixedTextModel::getServiceName() throw(RuntimeException, std::exception) +OUString SAL_CALL OFixedTextModel::getServiceName() { return OUString(FRM_COMPONENT_FIXEDTEXT); // old (non-sun) name for compatibility ! } void SAL_CALL OFixedTextModel::write(const Reference<XObjectOutputStream>& _rxOutStream) - throw(IOException, RuntimeException, std::exception) { OControlModel::write(_rxOutStream); @@ -98,7 +97,7 @@ void SAL_CALL OFixedTextModel::write(const Reference<XObjectOutputStream>& _rxOu } -void SAL_CALL OFixedTextModel::read(const Reference<XObjectInputStream>& _rxInStream) throw(IOException, RuntimeException, std::exception) +void SAL_CALL OFixedTextModel::read(const Reference<XObjectInputStream>& _rxInStream) { OControlModel::read(_rxInStream); |