Changed: Don't need to convert a std::string to a std::string
This commit is contained in:
parent
8f1359eb49
commit
f62ee8756a
1 changed files with 1 additions and 2 deletions
|
@ -311,8 +311,7 @@ class CAHMilkoMenuDoResetInterface : public IActionHandler
|
|||
virtual void execute (CCtrlBase * /* pCaller */, const string& Params)
|
||||
{
|
||||
// get param
|
||||
string mode;
|
||||
fromString(getParam(Params, "mode"), mode);
|
||||
string mode = getParam(Params, "mode");
|
||||
|
||||
// run procedure
|
||||
vector<string> v;
|
||||
|
|
Loading…
Reference in a new issue