From: Elena Mamontova Date: Mon, 29 Feb 2016 14:48:23 +0000 (+0200) Subject: Ticket 26. The ms parameter added when m_plugin.Reload() method call in the X-Git-Tag: 2.409~174^2~1^2~32 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/f077f656fcfdf090f0ab5151d2212d01d1425336 Ticket 26. The ms parameter added when m_plugin.Reload() method call in the Reload() method. --- diff --git a/projects/stargazer/plugin_runner.cpp b/projects/stargazer/plugin_runner.cpp index 0ecea273..e57a421e 100644 --- a/projects/stargazer/plugin_runner.cpp +++ b/projects/stargazer/plugin_runner.cpp @@ -71,7 +71,7 @@ return res; //----------------------------------------------------------------------------- int PLUGIN_RUNNER::Reload(const MODULE_SETTINGS & ms) { -int res = m_plugin.Reload(); +int res = m_plugin.Reload(ms); errorStr = m_plugin.GetStrError(); return res; }