summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-06-01 10:09:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-06-01 10:09:18 +0200
commit0951b76a00edd1cd89b8acf86c785d56fc776351 (patch)
tree8e874fdde794b81a565e2badec2df457cbb62350 /cppuhelper
parentc16d0dd846e25df56feffe868a15eb33bb55e42a (diff)
Add "virtual" for consistency
Change-Id: I8ecc2edde553edbd80ca04e2f3d541c31f516211
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/defaultbootstrap.cxx15
1 files changed, 8 insertions, 7 deletions
diff --git a/cppuhelper/source/defaultbootstrap.cxx b/cppuhelper/source/defaultbootstrap.cxx
index 55a4f098e916..dd7aeaf4e795 100644
--- a/cppuhelper/source/defaultbootstrap.cxx
+++ b/cppuhelper/source/defaultbootstrap.cxx
@@ -648,27 +648,28 @@ public:
css::uno::Reference< css::uno::XComponentContext > const & Context)
throw (css::uno::Exception, css::uno::RuntimeException);
- css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException);
+ virtual css::uno::Type SAL_CALL getElementType()
+ throw (css::uno::RuntimeException);
- sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException);
- css::uno::Reference< css::container::XEnumeration > SAL_CALL
+ virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
createEnumeration() throw (css::uno::RuntimeException);
- sal_Bool SAL_CALL has(css::uno::Any const & aElement)
+ virtual sal_Bool SAL_CALL has(css::uno::Any const & aElement)
throw (css::uno::RuntimeException);
- void SAL_CALL insert(css::uno::Any const & aElement)
+ virtual void SAL_CALL insert(css::uno::Any const & aElement)
throw (
css::lang::IllegalArgumentException,
css::container::ElementExistException, css::uno::RuntimeException);
- void SAL_CALL remove(css::uno::Any const & aElement)
+ virtual void SAL_CALL remove(css::uno::Any const & aElement)
throw (
css::lang::IllegalArgumentException,
css::container::NoSuchElementException, css::uno::RuntimeException);
- css::uno::Reference< css::container::XEnumeration > SAL_CALL
+ virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
createContentEnumeration(rtl::OUString const & aServiceName)
throw (css::uno::RuntimeException);