[Spreadsheet] remove superfluous nullptr checks

This commit is contained in:
Uwe
2022-07-18 01:49:41 +02:00
parent fc548a4b34
commit ce86b03e0a
5 changed files with 18 additions and 18 deletions

View File

@@ -75,7 +75,7 @@ void SheetObserver::slotChangedObject(const DocumentObject &Obj, const Property
else {
const char * name = Obj.getPropertyName(&Prop);
if (name == nullptr)
if (!name)
return;
if (isUpdating.find(name) != isUpdating.end())