Fixed bugs

This commit is contained in:
Vulpovile
2023-11-09 00:44:31 -08:00
parent 39d91f3943
commit 3928307609

View File

@@ -72,11 +72,11 @@ T* ReflectionProperty<T>::getValuePtr()
template<class T> template<class T>
void ReflectionProperty<T>::setValue(T value){ void ReflectionProperty<T>::setValue(T value){
value=T(value); this->value=T(value);
} }
template<class T> template<class T>
void ReflectionProperty<T>::setValueNotify(T value){ void ReflectionProperty<T>::setValueNotify(T value){
value=T(value); this->value=T(value);
containerTable->notify((ReflectionProperty<void*>*)this); containerTable->notify((ReflectionProperty<void*>*)this);
} }