From: Elena Mamontova Date: Thu, 10 Mar 2016 07:41:34 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~18 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/6e9413c7f9395b3bf0c56ed123e76f32904e3773 Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() method of the class PING in the ping.h file. --- diff --git a/projects/stargazer/plugins/other/ping/ping.h b/projects/stargazer/plugins/other/ping/ping.h index 29e4974e..1a7e1b97 100644 --- a/projects/stargazer/plugins/other/ping/ping.h +++ b/projects/stargazer/plugins/other/ping/ping.h @@ -112,7 +112,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning(); const std::string & GetStrError() const { return errorStr; }