diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /include/oox/ole/axbinarywriter.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/oox/ole/axbinarywriter.hxx')
-rw-r--r-- | include/oox/ole/axbinarywriter.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/oox/ole/axbinarywriter.hxx b/include/oox/ole/axbinarywriter.hxx index 4eb133a00c27..3efd418dea64 100644 --- a/include/oox/ole/axbinarywriter.hxx +++ b/include/oox/ole/axbinarywriter.hxx @@ -33,22 +33,22 @@ public: /** Returns the size of the data this stream represents, if the wrapped stream supports the size() operation. */ - virtual sal_Int64 size() const SAL_OVERRIDE; + virtual sal_Int64 size() const override; /** Return the current relative stream position (relative to position of the wrapped stream at construction time). */ - virtual sal_Int64 tell() const SAL_OVERRIDE; + virtual sal_Int64 tell() const override; /** Seeks the stream to the passed relative position, if it is behind the current position. */ - virtual void seek( sal_Int64 nPos ) SAL_OVERRIDE; + virtual void seek( sal_Int64 nPos ) override; /** Closes the input stream but not the wrapped stream. */ - virtual void close() SAL_OVERRIDE; + virtual void close() override; /** Reads nBytes bytes to the passed sequence. @return Number of bytes really read. */ - virtual void writeData( const StreamDataSequence& orData, size_t nAtomSize = 1 ) SAL_OVERRIDE; + virtual void writeData( const StreamDataSequence& orData, size_t nAtomSize = 1 ) override; /** Reads nBytes bytes to the (existing) buffer opMem. @return Number of bytes really read. */ - virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) SAL_OVERRIDE; + virtual void writeMemory( const void* pMem, sal_Int32 nBytes, size_t nAtomSize = 1 ) override; /** Aligns the stream to a multiple of the passed size (relative to the position of the wrapped stream at construction time). */ @@ -121,7 +121,7 @@ private: explicit PairProperty( AxPairData& rPairData ) : mrPairData( rPairData ) {} - virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE; + virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) override; }; /** Complex property for a string value. */ @@ -132,7 +132,7 @@ private: explicit StringProperty( OUString& rValue, sal_uInt32 nSize ) : mrValue( rValue ), mnSize( nSize ) {} - virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE; + virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) override; }; /** Stream property for a picture or mouse icon. */ @@ -142,7 +142,7 @@ private: explicit PictureProperty( StreamDataSequence& rPicData ) : mrPicData( rPicData ) {} - virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) SAL_OVERRIDE; + virtual bool writeProperty( AxAlignedOutputStream& rOutStrm ) override; }; typedef RefVector< ComplexProperty > ComplexPropVector; |