Sheet: Further cleanup in Sheet class
With PR 21445 an unused function has been removed. But the underlying class member isn't used anywhere else and can be removed as well.
This commit is contained in:
@@ -146,11 +146,6 @@ void Sheet::clearAll()
|
||||
cellErrors.clear();
|
||||
columnWidths.clear();
|
||||
rowHeights.clear();
|
||||
|
||||
for (auto& observer : observers) {
|
||||
delete observer.second;
|
||||
}
|
||||
observers.clear();
|
||||
}
|
||||
|
||||
// validate import/export parameters
|
||||
|
||||
@@ -290,10 +290,6 @@ protected:
|
||||
/* Row heights */
|
||||
PropertyRowHeights rowHeights;
|
||||
|
||||
/* Document observers to track changes to external properties */
|
||||
using ObserverMap = std::map<std::string, SheetObserver*>;
|
||||
ObserverMap observers;
|
||||
|
||||
int currentRow = -1;
|
||||
int currentCol = -1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user