summaryrefslogtreecommitdiff
path: root/package/inc
diff options
context:
space:
mode:
Diffstat (limited to 'package/inc')
-rw-r--r--package/inc/ZipPackage.hxx2
-rw-r--r--package/inc/ZipPackageBuffer.hxx2
-rw-r--r--package/inc/ZipPackageEntry.hxx2
-rw-r--r--package/inc/ZipPackageFolder.hxx2
-rw-r--r--package/inc/ZipPackageStream.hxx2
-rw-r--r--package/inc/zipfileaccess.hxx2
6 files changed, 6 insertions, 6 deletions
diff --git a/package/inc/ZipPackage.hxx b/package/inc/ZipPackage.hxx
index 12e1602178ac..378876962b0d 100644
--- a/package/inc/ZipPackage.hxx
+++ b/package/inc/ZipPackage.hxx
@@ -117,7 +117,7 @@ protected:
public:
ZipPackage( const css::uno::Reference < css::uno::XComponentContext > &xContext );
- virtual ~ZipPackage();
+ virtual ~ZipPackage() override;
ZipFile& getZipFile() { return *m_pZipFile;}
sal_Int32 getFormat() const { return m_nFormat; }
diff --git a/package/inc/ZipPackageBuffer.hxx b/package/inc/ZipPackageBuffer.hxx
index 6873d7b45065..daac93d7c17f 100644
--- a/package/inc/ZipPackageBuffer.hxx
+++ b/package/inc/ZipPackageBuffer.hxx
@@ -37,7 +37,7 @@ protected:
bool m_bMustInitBuffer;
public:
ZipPackageBuffer();
- virtual ~ZipPackageBuffer();
+ virtual ~ZipPackageBuffer() override;
inline void realloc ( sal_Int32 nSize ) { m_aBuffer.realloc ( nSize ); }
const css::uno::Sequence < sal_Int8>& getSequence () const { return m_aBuffer; }
diff --git a/package/inc/ZipPackageEntry.hxx b/package/inc/ZipPackageEntry.hxx
index 6d7381e280b7..1dc3539e234d 100644
--- a/package/inc/ZipPackageEntry.hxx
+++ b/package/inc/ZipPackageEntry.hxx
@@ -57,7 +57,7 @@ protected:
public:
ZipEntry aEntry;
ZipPackageEntry();
- virtual ~ZipPackageEntry();
+ virtual ~ZipPackageEntry() override;
const OUString& GetMediaType () const { return msMediaType; }
void SetMediaType ( const OUString & sNewType) { msMediaType = sNewType; }
diff --git a/package/inc/ZipPackageFolder.hxx b/package/inc/ZipPackageFolder.hxx
index b024d2ccea04..916c82477d9d 100644
--- a/package/inc/ZipPackageFolder.hxx
+++ b/package/inc/ZipPackageFolder.hxx
@@ -47,7 +47,7 @@ public:
ZipPackageFolder( const css::uno::Reference < css::uno::XComponentContext >& xContext,
sal_Int32 nFormat,
bool bAllowRemoveOnInsert );
- virtual ~ZipPackageFolder();
+ virtual ~ZipPackageFolder() override;
const OUString& GetVersion() const { return m_sVersion; }
void SetVersion( const OUString& aVersion ) { m_sVersion = aVersion; }
diff --git a/package/inc/ZipPackageStream.hxx b/package/inc/ZipPackageStream.hxx
index 67f536816a0a..bd1367bab7fa 100644
--- a/package/inc/ZipPackageStream.hxx
+++ b/package/inc/ZipPackageStream.hxx
@@ -124,7 +124,7 @@ public:
const css::uno::Reference < css::uno::XComponentContext >& xContext,
sal_Int32 nFormat,
bool bAllowRemoveOnInsert );
- virtual ~ZipPackageStream();
+ virtual ~ZipPackageStream() override;
css::uno::Reference< css::io::XInputStream > GetRawEncrStreamNoHeaderCopy();
css::uno::Reference< css::io::XInputStream > TryToGetRawFromDataStream(bool bAddHeaderForEncr );
diff --git a/package/inc/zipfileaccess.hxx b/package/inc/zipfileaccess.hxx
index d324b0a4476c..8160447e33b0 100644
--- a/package/inc/zipfileaccess.hxx
+++ b/package/inc/zipfileaccess.hxx
@@ -53,7 +53,7 @@ class OZipFileAccess : public ::cppu::WeakImplHelper<
public:
OZipFileAccess( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
- virtual ~OZipFileAccess();
+ virtual ~OZipFileAccess() override;
static css::uno::Sequence< OUString > GetPatternsFromString_Impl( const OUString& aString );