| 449 | } |
| 450 | |
| 451 | void ScriptParam::SetJSONFromString(const std::string &val) { |
| 452 | type_ = JSON; |
| 453 | str_val_ = val; |
| 454 | editor_.SetCustomWindowLauncher(); |
| 455 | } |
| 456 | |
| 457 | void ScriptParam::SetJSON(SimpleJSONWrapper &JSONVal) { |
| 458 | type_ = JSON; |
no test coverage detected