Add "virtual" for consistency
Change-Id: I8ecc2edde553edbd80ca04e2f3d541c31f516211
This commit is contained in:
@@ -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);
|
||||
|
||||
sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException);
|
||||
|
||||
css::uno::Reference< css::container::XEnumeration > SAL_CALL
|
||||
createEnumeration() throw (css::uno::RuntimeException);
|
||||
|
||||
sal_Bool SAL_CALL has(css::uno::Any const & aElement)
|
||||
virtual css::uno::Type SAL_CALL getElementType()
|
||||
throw (css::uno::RuntimeException);
|
||||
|
||||
void SAL_CALL insert(css::uno::Any const & aElement)
|
||||
virtual sal_Bool SAL_CALL hasElements() throw (css::uno::RuntimeException);
|
||||
|
||||
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
|
||||
createEnumeration() throw (css::uno::RuntimeException);
|
||||
|
||||
virtual sal_Bool SAL_CALL has(css::uno::Any const & aElement)
|
||||
throw (css::uno::RuntimeException);
|
||||
|
||||
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);
|
||||
|
||||
|
Reference in New Issue
Block a user