From 3928307609a33eae79b09c9103bd4d2a2b17f210 Mon Sep 17 00:00:00 2001 From: Vulpovile Date: Thu, 9 Nov 2023 00:44:31 -0800 Subject: [PATCH] Fixed bugs --- src/include/Reflection/ReflectionProperty_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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