diff --git a/src/include/Reflection/ReflectionProperty_impl.h b/src/include/Reflection/ReflectionProperty_impl.h index 095bfa0..7c853bd 100644 --- a/src/include/Reflection/ReflectionProperty_impl.h +++ b/src/include/Reflection/ReflectionProperty_impl.h @@ -72,11 +72,11 @@ T* ReflectionProperty::getValuePtr() template void ReflectionProperty::setValue(T value){ - value=T(value); + this->value=T(value); } template void ReflectionProperty::setValueNotify(T value){ - value=T(value); + this->value=T(value); containerTable->notify((ReflectionProperty*)this); } \ No newline at end of file