X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0907aa4037b12b6b88ee24495d4577a064d4f8db..c59911ca3cd38cf4ab36d2cc62686f97395899f9:/projects/stargazer/tariffs_impl.cpp diff --git a/projects/stargazer/tariffs_impl.cpp b/projects/stargazer/tariffs_impl.cpp index 9cc829dd..492f403f 100644 --- a/projects/stargazer/tariffs_impl.cpp +++ b/projects/stargazer/tariffs_impl.cpp @@ -47,7 +47,6 @@ TariffsImpl::TariffsImpl(Store * st) WriteServLog(Logger::get()), noTariff(NO_TARIFF_NAME) { -ReadTariffs(); } //----------------------------------------------------------------------------- int TariffsImpl::ReadTariffs() @@ -179,7 +178,7 @@ TariffData td; auto ni = onDelNotifiers.begin(); while (ni != onDelNotifiers.end()) { - (*ni)->Notify(td); + (*ni)->notify(td); ++ni; } @@ -228,7 +227,7 @@ if (store->AddTariff(name) < 0) auto ni = onAddNotifiers.begin(); while (ni != onAddNotifiers.end()) { - (*ni)->Notify(tariffs.back().GetTariffData()); + (*ni)->notify(tariffs.back().GetTariffData()); ++ni; }