Kaydet (Commit) 0951b76a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Add "virtual" for consistency

Change-Id: I8ecc2edde553edbd80ca04e2f3d541c31f516211
üst c16d0dd8
...@@ -648,27 +648,28 @@ public: ...@@ -648,27 +648,28 @@ public:
css::uno::Reference< css::uno::XComponentContext > const & Context) css::uno::Reference< css::uno::XComponentContext > const & Context)
throw (css::uno::Exception, css::uno::RuntimeException); 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); 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); throw (css::uno::RuntimeException);
void SAL_CALL insert(css::uno::Any const & aElement) virtual void SAL_CALL insert(css::uno::Any const & aElement)
throw ( throw (
css::lang::IllegalArgumentException, css::lang::IllegalArgumentException,
css::container::ElementExistException, css::uno::RuntimeException); 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 ( throw (
css::lang::IllegalArgumentException, css::lang::IllegalArgumentException,
css::container::NoSuchElementException, css::uno::RuntimeException); 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) createContentEnumeration(rtl::OUString const & aServiceName)
throw (css::uno::RuntimeException); throw (css::uno::RuntimeException);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment