Mod/Spreadsheet: fix yet another warning (potentialy harmful)

Warning was -Woverloaded-virtual
This commit is contained in:
Alexander Golubev 2015-08-08 01:27:37 +03:00 committed by wmayer
parent a8634f09fc
commit d2176be234
2 changed files with 2 additions and 2 deletions

View File

@ -764,7 +764,7 @@ void PropertySheet::removeColumns(int col, int count)
}
}
unsigned int PropertySheet::getMemSize()
unsigned int PropertySheet::getMemSize() const
{
return sizeof(*this);
}

View File

@ -105,7 +105,7 @@ public:
void removeColumns(int col, int count);
unsigned int getMemSize (void);
virtual unsigned int getMemSize (void) const;
bool mergeCells(CellAddress from, CellAddress to);