summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-18 15:48:23 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-18 17:02:27 +0200
commitcddc69f6e51d2c77214337308ceccf0a72bdf3e5 (patch)
tree5ce949044acbf60d350093f6bab98effcaed5dc8 /sc
parent69183fd1a26d7f5e2b04fcc492ee02a5dae71550 (diff)
WaE: overriding virtual function declaration not marked 'override'
Change-Id: I7f2dede9171f7478467a83ea000baa7da85aeac6
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/grouparealistener.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/grouparealistener.cxx b/sc/source/core/tool/grouparealistener.cxx
index 7a834614b5e7..639219244280 100644
--- a/sc/source/core/tool/grouparealistener.cxx
+++ b/sc/source/core/tool/grouparealistener.cxx
@@ -40,13 +40,13 @@ public:
CollectCellAction( const FormulaGroupAreaListener& rAreaListener ) :
mrAreaListener(rAreaListener) {}
- virtual void startColumn( ScColumn* pCol )
+ virtual void startColumn( ScColumn* pCol ) SAL_OVERRIDE
{
maPos.SetTab(pCol->GetTab());
maPos.SetCol(pCol->GetCol());
}
- virtual void execute( SCROW nRow1, SCROW nRow2, bool bVal )
+ virtual void execute( SCROW nRow1, SCROW nRow2, bool bVal ) SAL_OVERRIDE
{
if (!bVal)
return;