From: Elena Mamontova Date: Wed, 9 Mar 2016 07:21:45 +0000 (+0200) Subject: Ticket 26. The const MODULE_SETTINGS & ms parameter added to the X-Git-Tag: 2.409~174^2~1^2~29 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/212c1cd66a5b8f56de1f17bd301787617a3653c2 Ticket 26. The const MODULE_SETTINGS & ms parameter added to the Reload() function in the ao.h plugin. --- diff --git a/projects/stargazer/plugins/authorization/ao/ao.h b/projects/stargazer/plugins/authorization/ao/ao.h index d8b6dc88..34c15d91 100644 --- a/projects/stargazer/plugins/authorization/ao/ao.h +++ b/projects/stargazer/plugins/authorization/ao/ao.h @@ -89,7 +89,7 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & ms) { return 0; } bool IsRunning() { return isRunning; } void SetSettings(const MODULE_SETTINGS &) {} int ParseSettings() { return 0; }