Kaydet (Commit) cddc69f6 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: overriding virtual function declaration not marked 'override'

Change-Id: I7f2dede9171f7478467a83ea000baa7da85aeac6
üst 69183fd1
...@@ -40,13 +40,13 @@ public: ...@@ -40,13 +40,13 @@ public:
CollectCellAction( const FormulaGroupAreaListener& rAreaListener ) : CollectCellAction( const FormulaGroupAreaListener& rAreaListener ) :
mrAreaListener(rAreaListener) {} mrAreaListener(rAreaListener) {}
virtual void startColumn( ScColumn* pCol ) virtual void startColumn( ScColumn* pCol ) SAL_OVERRIDE
{ {
maPos.SetTab(pCol->GetTab()); maPos.SetTab(pCol->GetTab());
maPos.SetCol(pCol->GetCol()); 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) if (!bVal)
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment