summaryrefslogtreecommitdiff
path: root/include/oox/helper/zipstorage.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/helper/zipstorage.hxx')
-rw-r--r--include/oox/helper/zipstorage.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/oox/helper/zipstorage.hxx b/include/oox/helper/zipstorage.hxx
index e3e544bcca33..f643935bb006 100644
--- a/include/oox/helper/zipstorage.hxx
+++ b/include/oox/helper/zipstorage.hxx
@@ -51,28 +51,28 @@ private:
const OUString& rElementName );
/** Returns true, if the object represents a valid storage. */
- virtual bool implIsStorage() const;
+ virtual bool implIsStorage() const SAL_OVERRIDE;
/** Returns the com.sun.star.embed.XStorage interface of the current storage. */
virtual ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >
- implGetXStorage() const;
+ implGetXStorage() const SAL_OVERRIDE;
/** Returns the names of all elements of this storage. */
- virtual void implGetElementNames( ::std::vector< OUString >& orElementNames ) const;
+ virtual void implGetElementNames( ::std::vector< OUString >& orElementNames ) const SAL_OVERRIDE;
/** Opens and returns the specified sub storage from the storage. */
- virtual StorageRef implOpenSubStorage( const OUString& rElementName, bool bCreateMissing );
+ virtual StorageRef implOpenSubStorage( const OUString& rElementName, bool bCreateMissing ) SAL_OVERRIDE;
/** Opens and returns the specified input stream from the storage. */
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >
- implOpenInputStream( const OUString& rElementName );
+ implOpenInputStream( const OUString& rElementName ) SAL_OVERRIDE;
/** Opens and returns the specified output stream from the storage. */
virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >
- implOpenOutputStream( const OUString& rElementName );
+ implOpenOutputStream( const OUString& rElementName ) SAL_OVERRIDE;
/** Commits the current storage. */
- virtual void implCommit() const;
+ virtual void implCommit() const SAL_OVERRIDE;
private:
::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >