From 86a5053df0d755d10121d65c533f3d327340a0fd Mon Sep 17 00:00:00 2001 From: David Tardon Date: Wed, 15 Jan 2014 21:44:26 +0100 Subject: bah Change-Id: I0fd33c8ee1791714ee9b42f50cabbdc51ebe4440 --- package/inc/ZipPackage.hxx | 4 ++-- package/source/zippackage/ZipPackage.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'package') diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx index 9ee401bcf3f8..1a0bb308a4a5 100644 --- a/package/inc/ZipPackage.hxx +++ b/package/inc/ZipPackage.hxx @@ -147,9 +147,9 @@ public: virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL createEnumeration() throw(::com::sun::star::uno::RuntimeException); // XElementType - virtual ::com::sun::star::uno::Type getElementType() + virtual ::com::sun::star::uno::Type SAL_CALL getElementType() throw(::com::sun::star::uno::RuntimeException); - virtual sal_Bool hasElements() + virtual sal_Bool SAL_CALL hasElements() throw(::com::sun::star::uno::RuntimeException); // XHierarchicalNameAccess virtual ::com::sun::star::uno::Any SAL_CALL getByHierarchicalName( const OUString& aName ) diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index 77b7862c0ecd..bf0e026bcd97 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -786,7 +786,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) return m_pRootFolder->createEnumeration(); } -::com::sun::star::uno::Type ZipPackage::getElementType() +::com::sun::star::uno::Type SAL_CALL ZipPackage::getElementType() throw( RuntimeException ) { assert(m_pRootFolder); @@ -794,7 +794,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) return m_pRootFolder->getElementType(); } -sal_Bool ZipPackage::hasElements() +sal_Bool SAL_CALL ZipPackage::hasElements() throw( RuntimeException ) { assert(m_pRootFolder); -- cgit