From: Maxim Mamontov Date: Wed, 8 Dec 2010 12:12:54 +0000 (+0200) Subject: Один из методов класса настроек сделан константным X-Git-Tag: 2.407-rc3~322 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/b4e18f8f29d35f891cfd872638e27c8cf70b52c3 Один из методов класса настроек сделан константным --- diff --git a/projects/stargazer/plugins/other/ping/ping.h b/projects/stargazer/plugins/other/ping/ping.h index 9f6304d8..2f4791a1 100644 --- a/projects/stargazer/plugins/other/ping/ping.h +++ b/projects/stargazer/plugins/other/ping/ping.h @@ -77,7 +77,7 @@ public: virtual ~PING_SETTINGS() {} const string& GetStrError() const { return errorStr; } int ParseSettings(const MODULE_SETTINGS & s); - int GetPingDelay() { return pingDelay; } + int GetPingDelay() const { return pingDelay; } private: int ParseIntInRange(const string & str, int min, int max, int * val);