X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8e80bb9cec2c90dd61f810fb1525932a434288eb..bc6cac0e474dfe2feb4983aef98f99e23a98ffc4:/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; }