summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-04-23 17:57:24 +0200
committerNoel Grandin <noel@peralex.com>2013-04-23 17:57:52 +0200
commita5f675c3d3254f03da8fbf42028a9c6b048df635 (patch)
treef0640eebd7b0936be1e458e8f45bbc41355bb674 /forms
parenta143098e3f5c8e90d7f14d444193b93d05b6cede (diff)
fix, forget SAL_CALL again
Change-Id: Ib13362c1a7aa7fa00e56c8df73f74ba1088999b5
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormsCollection.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/FormsCollection.hxx b/forms/source/component/FormsCollection.hxx
index 8c92e7b97f29..929b2061acfd 100644
--- a/forms/source/component/FormsCollection.hxx
+++ b/forms/source/component/FormsCollection.hxx
@@ -111,7 +111,7 @@ public:
{ return OInterfaceContainer::replaceByIndex(p1, p2); }
virtual void SAL_CALL insertByIndex(sal_Int32 p1, const com::sun::star::uno::Any& p2) throw (css::uno::RuntimeException)
{ return OInterfaceContainer::insertByIndex(p1, p2); }
- virtual void removeByIndex(sal_Int32 p1) throw (css::uno::RuntimeException)
+ virtual void SAL_CALL removeByIndex(sal_Int32 p1) throw (css::uno::RuntimeException)
{ return OInterfaceContainer::removeByIndex(p1); }
virtual com::sun::star::uno::Reference<com::sun::star::container::XEnumeration> SAL_CALL createEnumeration() throw (css::uno::RuntimeException)
{ return OInterfaceContainer::createEnumeration(); }
@@ -137,15 +137,15 @@ public:
{ OInterfaceContainer::addScriptListener(p1); }
virtual void SAL_CALL removeScriptListener(const com::sun::star::uno::Reference<com::sun::star::script::XScriptListener>& p1) throw (css::uno::RuntimeException)
{ OInterfaceContainer::removeScriptListener(p1); }
- virtual void dispose() throw (css::uno::RuntimeException)
+ virtual void SAL_CALL dispose() throw (css::uno::RuntimeException)
{ FormsCollectionComponentBase::dispose(); }
- virtual void addEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw (css::uno::RuntimeException)
+ virtual void SAL_CALL addEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw (css::uno::RuntimeException)
{ FormsCollectionComponentBase::addEventListener(p1); }
- virtual void removeEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw (css::uno::RuntimeException)
+ virtual void SAL_CALL removeEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw (css::uno::RuntimeException)
{ FormsCollectionComponentBase::removeEventListener(p1); }
- virtual void addContainerListener(const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener>& p1) throw (css::uno::RuntimeException)
+ virtual void SAL_CALL addContainerListener(const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener>& p1) throw (css::uno::RuntimeException)
{ OInterfaceContainer::addContainerListener(p1); }
- virtual void removeContainerListener(const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener>& p1) throw (css::uno::RuntimeException)
+ virtual void SAL_CALL removeContainerListener(const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener>& p1) throw (css::uno::RuntimeException)
{ OInterfaceContainer::removeContainerListener(p1); }
};