Fixed missing return value

This commit is contained in:
filcuc 2015-03-11 21:31:59 +01:00
parent 858e3448f1
commit 1359dee781
1 changed files with 2 additions and 0 deletions

View File

@ -362,6 +362,8 @@ bool DynamicQObject<T>::writeProperty(const DynamicProperty& property, void** ar
QVariant newValue(writeSlot.argumentTypeAt(0), args[0]); QVariant newValue(writeSlot.argumentTypeAt(0), args[0]);
executeSlot(writeSlot, {newValue}); executeSlot(writeSlot, {newValue});
return true;
} }
template <typename T> template <typename T>