summaryrefslogtreecommitdiff
path: root/include/sot/stg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sot/stg.hxx')
-rw-r--r--include/sot/stg.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sot/stg.hxx b/include/sot/stg.hxx
index 9439c289c875..2c3ccda0cbfb 100644
--- a/include/sot/stg.hxx
+++ b/include/sot/stg.hxx
@@ -51,7 +51,7 @@ protected:
StreamMode m_nMode; // open mode
bool m_bAutoCommit;
StorageBase();
- virtual ~StorageBase();
+ virtual ~StorageBase() override;
public:
virtual bool Validate( bool=false ) const = 0;
virtual bool ValidateMode( StreamMode ) const = 0;
@@ -137,7 +137,7 @@ class StorageStream : public BaseStorageStream, public OLEStorageBase
//friend class Storage;
sal_uLong nPos; // current position
protected:
- virtual ~StorageStream();
+ virtual ~StorageStream() override;
public:
StorageStream( StgIo*, StgDirEntry*, StreamMode );
virtual sal_uLong Read( void * pData, sal_uLong nSize ) override;
@@ -163,7 +163,7 @@ class SOT_DLLPUBLIC Storage : public BaseStorage, public OLEStorageBase
void Init( bool bCreate );
Storage( StgIo*, StgDirEntry*, StreamMode );
protected:
- virtual ~Storage();
+ virtual ~Storage() override;
public:
Storage( const OUString &, StreamMode = StreamMode::STD_READWRITE, bool bDirect = true );
Storage( SvStream& rStrm, bool bDirect = true );
@@ -219,7 +219,7 @@ friend class UCBStorage;
UCBStorageStream_Impl*
pImp;
protected:
- virtual ~UCBStorageStream();
+ virtual ~UCBStorageStream() override;
public:
UCBStorageStream( const OUString& rName, StreamMode nMode, bool bDirect, const OString* pKey, bool bRepair, css::uno::Reference< css::ucb::XProgressHandler > const & xProgress );
UCBStorageStream( UCBStorageStream_Impl* );
@@ -253,7 +253,7 @@ class SOT_DLLPUBLIC UCBStorage : public BaseStorage
UCBStorage_Impl* pImp;
protected:
- virtual ~UCBStorage();
+ virtual ~UCBStorage() override;
public:
static bool IsStorageFile( SvStream* );
static OUString GetLinkedFile( SvStream& );