auto ni = onAddNotifiers.begin();
while (ni != onAddNotifiers.end())
{
- (*ni)->Notify(&users.front());
+ (*ni)->notify(&users.front());
++ni;
}
}
auto ni = onAddNotifiersImpl.begin();
while (ni != onAddNotifiersImpl.end())
{
- (*ni)->Notify(&users.front());
+ (*ni)->notify(&users.front());
++ni;
}
}
auto ni = onDelNotifiers.begin();
while (ni != onDelNotifiers.end())
{
- (*ni)->Notify(&(*u));
+ (*ni)->notify(&(*u));
++ni;
}
}
auto ni = onDelNotifiersImpl.begin();
while (ni != onDelNotifiersImpl.end())
{
- (*ni)->Notify(&(*u));
+ (*ni)->notify(&(*u));
++ni;
}
}