| 156 | } |
| 157 | |
| 158 | SnapResult SnapFunctionsRegistry::SingleStep( |
| 159 | const Identifier& id, const AudacityProject& project, double time, |
| 160 | bool upwards) |
| 161 | { |
| 162 | auto item = Find(id); |
| 163 | |
| 164 | if (item == nullptr) |
| 165 | return SnapResult { time, false }; |
| 166 | |
| 167 | return item->SingleStep(project, time, upwards); |
| 168 | } |
| 169 | |
| 170 | SnapRegistryGroup::~SnapRegistryGroup() |
| 171 | { |