| 310 | } |
| 311 | |
| 312 | void Scale::SetRoot(int root, bool force) |
| 313 | { |
| 314 | if (root == mScale.mScaleRoot && !force) |
| 315 | return; |
| 316 | |
| 317 | mScale.SetRoot(root); |
| 318 | |
| 319 | NotifyListeners(); |
| 320 | } |
| 321 | |
| 322 | void Scale::SetScaleType(std::string type, bool force) |
| 323 | { |
no test coverage detected