diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 23:36:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 23:36:28 +0100 |
commit | a85145a359f5f21b2d57d822b2785a85c6566856 (patch) | |
tree | 91d21e34100571035afab1bec041d55a59f4d7c5 /sc | |
parent | 891e9807d8cb88bb8f2a9d5f05aee78dca538b32 (diff) |
Work around MSC "'override' cannot be used with 'inline'" bug
Change-Id: I16b931a3383794e646ab71011510926e49da3599
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/xerecord.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/inc/xerecord.hxx b/sc/source/filter/inc/xerecord.hxx index 8f44da3d044c..0d88ff43082c 100644 --- a/sc/source/filter/inc/xerecord.hxx +++ b/sc/source/filter/inc/xerecord.hxx @@ -207,7 +207,7 @@ public: private: /** Writes the body of the record. */ - inline virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE { rStrm << maValue; } + virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE { rStrm << maValue; } // inlining prevents warning in wntmsci10 private: @@ -369,14 +369,14 @@ public: inline void RemoveAllRecords() { maRecs.clear(); } /** Writes the complete record list. */ - inline virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE + virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE { // inlining prevents warning in wntmsci10 for( typename RecordVec::iterator aIt = maRecs.begin(), aEnd = maRecs.end(); aIt != aEnd; ++aIt ) (*aIt)->Save( rStrm ); } - inline virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE + virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE { // inlining prevents warning in wntmsci10 for( typename RecordVec::iterator aIt = maRecs.begin(), aEnd = maRecs.end(); aIt != aEnd; ++aIt ) |