| 68 | } |
| 69 | |
| 70 | bool |
| 71 | MoveService::configure (const std::string &name, const std::string &value) |
| 72 | { |
| 73 | if (lay::EditorServiceBase::configure (name, value)) { |
| 74 | return true; |
| 75 | } |
| 76 | |
| 77 | if (name == cfg_grid) { |
| 78 | tl::from_string (value, m_global_grid); |
| 79 | } |
| 80 | |
| 81 | return false; // not taken |
| 82 | } |
| 83 | |
| 84 | void |
| 85 | MoveService::function (const std::string &name, const std::string &value) |
no test coverage detected