diff options
Diffstat (limited to 'forms/source/component/Pattern.cxx')
-rw-r--r-- | forms/source/component/Pattern.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/Pattern.cxx b/forms/source/component/Pattern.cxx index 9c2778ea1807..bd0918061326 100644 --- a/forms/source/component/Pattern.cxx +++ b/forms/source/component/Pattern.cxx @@ -41,7 +41,7 @@ OPatternControl::OPatternControl(const Reference<XComponentContext>& _rxFactory) { } -css::uno::Sequence<OUString> OPatternControl::getSupportedServiceNames() throw(std::exception) +css::uno::Sequence<OUString> OPatternControl::getSupportedServiceNames() { css::uno::Sequence<OUString> aSupported = OBoundControl::getSupportedServiceNames(); aSupported.realloc(aSupported.getLength() + 2); @@ -82,7 +82,7 @@ IMPLEMENT_DEFAULT_CLONING( OPatternModel ) // XServiceInfo -css::uno::Sequence<OUString> SAL_CALL OPatternModel::getSupportedServiceNames() throw(std::exception) +css::uno::Sequence<OUString> SAL_CALL OPatternModel::getSupportedServiceNames() { css::uno::Sequence<OUString> aSupported = OBoundControlModel::getSupportedServiceNames(); aSupported.realloc(aSupported.getLength() + 3); @@ -106,7 +106,7 @@ void OPatternModel::describeFixedProperties( Sequence< Property >& _rProps ) con } -OUString SAL_CALL OPatternModel::getServiceName() throw ( css::uno::RuntimeException, std::exception) +OUString SAL_CALL OPatternModel::getServiceName() { return OUString(FRM_COMPONENT_PATTERNFIELD); // old (non-sun) name for compatibility ! } |