From: Elena Mamontova Date: Wed, 9 Mar 2016 08:12:58 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~28 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/387b3f5ac84b99dc7d04fd69162712ede9783989 Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() function in the stgconfig.h plugin. --- diff --git a/projects/stargazer/plugins/configuration/sgconfig/stgconfig.h b/projects/stargazer/plugins/configuration/sgconfig/stgconfig.h index 287c3813..87756b4a 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/stgconfig.h +++ b/projects/stargazer/plugins/configuration/sgconfig/stgconfig.h @@ -60,7 +60,7 @@ class STG_CONFIG : public PLUGIN int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return isRunning; } const std::string & GetStrError() const { return errorStr; }