diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-05-21 21:53:07 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-05-21 22:12:02 +0300 |
commit | 51a211ca1957280cda4de1679538e1f5fe25404e (patch) | |
tree | bfbfd02c44bfbd95857f3997d790a26cf5035eab /sc/source | |
parent | 6c0e47e37834d138daf4fecd154881ef5740c9fb (diff) |
WaE: overriding virtual function declaration not marked 'SAL_OVERRIDE'
Change-Id: I9251488743ec3801367600455ef9a22ad876d2d3
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/docshell/externalrefmgr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/docshell/externalrefmgr.cxx b/sc/source/ui/docshell/externalrefmgr.cxx index 38f900b9abde..9c89c0054765 100644 --- a/sc/source/ui/docshell/externalrefmgr.cxx +++ b/sc/source/ui/docshell/externalrefmgr.cxx @@ -2653,7 +2653,7 @@ public: RefCacheFiller( svl::SharedStringPool& rStrPool, ScExternalRefCache& rRefCache, sal_uInt16 nFileId ) : mrStrPool(rStrPool), mrRefCache(rRefCache), mnFileId(nFileId), mpCurCol(NULL) {} - virtual void startColumn( ScColumn* pCol ) + virtual void startColumn( ScColumn* pCol ) SAL_OVERRIDE { mpCurCol = pCol; if (!mpCurCol) @@ -2663,7 +2663,7 @@ public: mpRefTab = mrRefCache.getCacheTable(mnFileId, mpCurCol->GetTab()); } - virtual void execute( SCROW nRow1, SCROW nRow2, bool bVal ) + virtual void execute( SCROW nRow1, SCROW nRow2, bool bVal ) SAL_OVERRIDE { if (!mpCurCol || !bVal) return; |