X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/a5cb4cf37e5dfa9bb9ce5c5e4ccf8d5978d3576f..646c8fd6c0112573ba2aae7f165f5d48e849831e:/include/stg/user_property.h?ds=inline diff --git a/include/stg/user_property.h b/include/stg/user_property.h index 5965a7a6..529d854a 100644 --- a/include/stg/user_property.h +++ b/include/stg/user_property.h @@ -207,14 +207,14 @@ void UserProperty::Set(const T& rvalue) auto ni = beforeNotifiers.begin(); while (ni != beforeNotifiers.end()) - (*ni++)->Notify(oldVal, rvalue); + (*ni++)->notify(oldVal, rvalue); value = rvalue; modificationTime = time(NULL); ni = afterNotifiers.begin(); while (ni != afterNotifiers.end()) - (*ni++)->Notify(oldVal, rvalue); + (*ni++)->notify(oldVal, rvalue); } //----------------------------------------------------------------------------- template