various fixes:

+ fix typos
+ fix const correctness
+ whitespace improvements
This commit is contained in:
wmayer
2017-06-19 17:18:16 +02:00
parent 39bf43202e
commit 989fe4028e
14 changed files with 33 additions and 34 deletions

View File

@@ -422,9 +422,9 @@ void DocumentObject::onChanged(const Property* prop)
if (prop == &Label && _pDoc && oldLabel != Label.getStrValue())
_pDoc->signalRelabelObject(*this);
// set object touched if it is a input ptoperty
// set object touched if it is an input property
if (!(prop->getType() & Prop_Output))
StatusBits.set(0);
StatusBits.set(ObjectStatus::Touch);
//call the parent for appropriate handling
TransactionalObject::onChanged(prop);