Manual changes to improve isDerivedFrom usage

This commit is contained in:
Benjamin Nauck
2025-01-16 23:37:04 +01:00
parent 02c8bfff69
commit 97bf3c5e33
12 changed files with 43 additions and 97 deletions

View File

@@ -924,7 +924,7 @@ void Sheet::recomputeCell(CellAddress p)
cellErrors.insert(p);
cellUpdated(p);
if (e.isDerivedFrom(Base::AbortException::getClassTypeId())) {
if (e.isDerivedFrom<Base::AbortException>()) {
throw;
}
}