Kaydet (Commit) 86a5053d authored tarafından David Tardon's avatar David Tardon

bah

Change-Id: I0fd33c8ee1791714ee9b42f50cabbdc51ebe4440
üst 723863ff
...@@ -147,9 +147,9 @@ public: ...@@ -147,9 +147,9 @@ public:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL createEnumeration() virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL createEnumeration()
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
// XElementType // XElementType
virtual ::com::sun::star::uno::Type getElementType() virtual ::com::sun::star::uno::Type SAL_CALL getElementType()
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
virtual sal_Bool hasElements() virtual sal_Bool SAL_CALL hasElements()
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
// XHierarchicalNameAccess // XHierarchicalNameAccess
virtual ::com::sun::star::uno::Any SAL_CALL getByHierarchicalName( const OUString& aName ) virtual ::com::sun::star::uno::Any SAL_CALL getByHierarchicalName( const OUString& aName )
......
...@@ -786,7 +786,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) ...@@ -786,7 +786,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments )
return m_pRootFolder->createEnumeration(); return m_pRootFolder->createEnumeration();
} }
::com::sun::star::uno::Type ZipPackage::getElementType() ::com::sun::star::uno::Type SAL_CALL ZipPackage::getElementType()
throw( RuntimeException ) throw( RuntimeException )
{ {
assert(m_pRootFolder); assert(m_pRootFolder);
...@@ -794,7 +794,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments ) ...@@ -794,7 +794,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments )
return m_pRootFolder->getElementType(); return m_pRootFolder->getElementType();
} }
sal_Bool ZipPackage::hasElements() sal_Bool SAL_CALL ZipPackage::hasElements()
throw( RuntimeException ) throw( RuntimeException )
{ {
assert(m_pRootFolder); assert(m_pRootFolder);
......
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