[Libreoffice-commits] core.git: package/inc package/source
David Tardon
dtardon at redhat.com
Wed Jan 15 12:44:55 PST 2014
package/inc/ZipPackage.hxx | 4 ++--
package/source/zippackage/ZipPackage.cxx | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 86a5053df0d755d10121d65c533f3d327340a0fd
Author: David Tardon <dtardon at redhat.com>
Date: Wed Jan 15 21:44:26 2014 +0100
bah
Change-Id: I0fd33c8ee1791714ee9b42f50cabbdc51ebe4440
diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx
index 9ee401b..1a0bb30 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 77b7862..bf0e026 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);
More information about the Libreoffice-commits
mailing list