diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-11-18 16:16:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-11-18 17:02:27 +0200 |
commit | 7f4222a5a59a8ccd8fcc5a56ed521bc0a9655737 (patch) | |
tree | 5754be49ce498f0b6848a3c06a606c1693cebba9 | |
parent | cddc69f6e51d2c77214337308ceccf0a72bdf3e5 (diff) |
WaE: overriding virtual function declaration not marked 'override'
Change-Id: I82cfe96c4081afbd43fa1a9c41a9a92433f6bdb1
-rw-r--r-- | sc/source/filter/excel/xetable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xetable.cxx b/sc/source/filter/excel/xetable.cxx index 770f30e5a9ff..01c286df968d 100644 --- a/sc/source/filter/excel/xetable.cxx +++ b/sc/source/filter/excel/xetable.cxx @@ -2052,7 +2052,7 @@ public: mrColXFIndexes( rColXFIndexes ) {} virtual ~RowFinalizeTask() {} void push_back( XclExpRow *pRow ) { maRows.push_back( pRow ); } - virtual void doWork() + virtual void doWork() SAL_OVERRIDE { for (size_t i = 0; i < maRows.size(); i++ ) maRows[ i ]->Finalize( mrColXFIndexes, mbProgress ); |