Mod: remove some unnecessary nullptr checks

This commit is contained in:
Uwe
2022-07-18 12:58:12 +02:00
parent a5eb40a9a6
commit 88a06f8f10
17 changed files with 37 additions and 37 deletions

View File

@@ -52,7 +52,7 @@ PropertiesDialog::PropertiesDialog(Sheet *_sheet, const std::vector<Range> &_ran
Cell * cell = sheet->getNewCell(*range);
assert(cell != nullptr);
assert(cell);
(void)cell->getForeground(foregroundColor);
(void)cell->getBackground(backgroundColor);