summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2014-01-15 21:44:26 +0100
committerDavid Tardon <dtardon@redhat.com>2014-01-15 21:44:26 +0100
commit86a5053df0d755d10121d65c533f3d327340a0fd (patch)
tree8518ddbba1a694c05db973158bf30a10ac9c0150 /package
parent723863ff26f46e294adde61009b85f6f0e28b5b0 (diff)
bah
Change-Id: I0fd33c8ee1791714ee9b42f50cabbdc51ebe4440
Diffstat (limited to 'package')
-rw-r--r--package/inc/ZipPackage.hxx4
-rw-r--r--package/source/zippackage/ZipPackage.cxx4
2 files changed, 4 insertions, 4 deletions
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);