X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8582d7dfe21e7225d4a715501d70c2649268228f..bc6cac0e474dfe2feb4983aef98f99e23a98ffc4:/projects/stargazer/users_impl.cpp diff --git a/projects/stargazer/users_impl.cpp b/projects/stargazer/users_impl.cpp index 8cb9bee5..cfd692c5 100644 --- a/projects/stargazer/users_impl.cpp +++ b/projects/stargazer/users_impl.cpp @@ -154,7 +154,7 @@ AddUserIntoIndexes(users.begin()); auto ni = onAddNotifiers.begin(); while (ni != onAddNotifiers.end()) { - (*ni)->Notify(&users.front()); + (*ni)->notify(&users.front()); ++ni; } } @@ -164,7 +164,7 @@ AddUserIntoIndexes(users.begin()); auto ni = onAddNotifiersImpl.begin(); while (ni != onAddNotifiersImpl.end()) { - (*ni)->Notify(&users.front()); + (*ni)->notify(&users.front()); ++ni; } } @@ -203,7 +203,7 @@ if (priv.userAddDel == 0) auto ni = onDelNotifiers.begin(); while (ni != onDelNotifiers.end()) { - (*ni)->Notify(&(*u)); + (*ni)->notify(&(*u)); ++ni; } } @@ -212,7 +212,7 @@ if (priv.userAddDel == 0) auto ni = onDelNotifiersImpl.begin(); while (ni != onDelNotifiersImpl.end()) { - (*ni)->Notify(&(*u)); + (*ni)->notify(&(*u)); ++ni; } }