summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xepivot.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /sc/source/filter/inc/xepivot.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'sc/source/filter/inc/xepivot.hxx')
-rw-r--r--sc/source/filter/inc/xepivot.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/inc/xepivot.hxx b/sc/source/filter/inc/xepivot.hxx
index e5a171a058dc..902d9088dba6 100644
--- a/sc/source/filter/inc/xepivot.hxx
+++ b/sc/source/filter/inc/xepivot.hxx
@@ -55,7 +55,7 @@ public:
bool EqualsBool( bool bValue ) const;
private:
- virtual void WriteBody( XclExpStream& rStrm );
+ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
sal_uInt16 mnTypeFlag; /// Data type flag.
@@ -100,7 +100,7 @@ public:
void WriteIndex( XclExpStream& rStrm, sal_uInt32 nSrcRow ) const;
/** Writes the pivot cache field and all items and other related records. */
- virtual void Save( XclExpStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
typedef XclExpRecordList< XclExpPCItem > XclExpPCItemList;
@@ -153,7 +153,7 @@ private:
void WriteSxgroupinfo( XclExpStream& rStrm );
/** Writes the contents of the SXFIELD record for this field. */
- virtual void WriteBody( XclExpStream& rStrm );
+ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
const XclExpPivotCache& mrPCache; /// Parent pivot cache containing this field.
@@ -264,7 +264,7 @@ public:
private:
/** Writes the SXVI record body describing the pivot table item. */
- virtual void WriteBody( XclExpStream& rStrm );
+ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
const XclExpPCItem* mpCacheItem; /// The referred pivot cache item.
@@ -310,7 +310,7 @@ public:
void WriteSxdi( XclExpStream& rStrm, sal_uInt16 nDataInfoIdx ) const;
/** Writes the entire pivot table field. */
- virtual void Save( XclExpStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
@@ -362,8 +362,8 @@ public:
sal_uInt16 GetDataFieldIndex( const OUString& rName, sal_uInt16 nDefaultIdx ) const;
/** Writes the entire pivot table. */
- virtual void Save( XclExpStream& rStrm );
- virtual void SaveXml( XclExpXmlStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
+ virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
private: