| 247 | } |
| 248 | |
| 249 | void EffectTimeScale::OnText_PitchHalfStepsStart(wxCommandEvent & WXUNUSED(evt)) |
| 250 | { |
| 251 | if (!EffectEditor::EnableApply( |
| 252 | mUIParent, mUIParent->TransferDataFromWindow())) |
| 253 | { |
| 254 | return; |
| 255 | } |
| 256 | |
| 257 | m_PitchPercentChangeStart = HalfStepsToPercentChange(m_PitchHalfStepsStart); |
| 258 | Update_Text_PitchPercentChangeStart(); |
| 259 | } |
| 260 | |
| 261 | void EffectTimeScale::OnText_PitchHalfStepsEnd(wxCommandEvent & WXUNUSED(evt)) |
| 262 | { |
nothing calls this directly
no test coverage detected