diff options
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/filelist.hxx | 2 | ||||
-rw-r--r-- | include/sot/object.hxx | 2 | ||||
-rw-r--r-- | include/sot/stg.hxx | 10 | ||||
-rw-r--r-- | include/sot/storage.hxx | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/include/sot/filelist.hxx b/include/sot/filelist.hxx index 10502c12c7e6..430568c4151e 100644 --- a/include/sot/filelist.hxx +++ b/include/sot/filelist.hxx @@ -36,7 +36,7 @@ protected: public: FileList() {}; - virtual ~FileList(); + virtual ~FileList() override; // Zuweisungsoperator FileList& operator=( const FileList& rFileList ); diff --git a/include/sot/object.hxx b/include/sot/object.hxx index 8991a21b7590..9680eaba48a9 100644 --- a/include/sot/object.hxx +++ b/include/sot/object.hxx @@ -31,7 +31,7 @@ class SOT_DLLPUBLIC SotObject : virtual public SvRefBase bool bInClose; // TRUE, in DoClose protected: - virtual ~SotObject(); + virtual ~SotObject() override; virtual bool Close(); public: 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& ); diff --git a/include/sot/storage.hxx b/include/sot/storage.hxx index d2e56c6caf0e..92134c20f821 100644 --- a/include/sot/storage.hxx +++ b/include/sot/storage.hxx @@ -42,7 +42,7 @@ protected: virtual sal_uLong PutData( const void* pData, sal_uLong nSize ) override; virtual sal_uInt64 SeekPos(sal_uInt64 nPos) override; virtual void FlushData() override; - virtual ~SotStorageStream(); + virtual ~SotStorageStream() override; public: SotStorageStream( const OUString &, StreamMode = StreamMode::STD_READWRITE ); @@ -73,7 +73,7 @@ friend class SotStorageStream; long m_nVersion; protected: - virtual ~SotStorage(); + virtual ~SotStorage() override; void CreateStorage( bool bUCBStorage, StreamMode ); public: SotStorage( const OUString &, |