1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-09 06:06:24 +01:00

Remove the special PopupFunctor, redo it by other means...

... it was only used, so far, by the scrubber.
This commit is contained in:
Paul Licameli
2017-08-19 07:42:43 -04:00
parent 1e3ab82a01
commit d263eaa97b
5 changed files with 21 additions and 38 deletions

View File

@@ -193,13 +193,13 @@ void ScrubbingToolBar::OnButton(wxCommandEvent &event)
switch (id) {
case STBScrubID:
scrubber.OnScrub(event);
scrubber.OnScrub();
break;
case STBSeekID:
scrubber.OnSeek(event);
scrubber.OnSeek();
break;
case STBRulerID:
scrubber.OnToggleScrubRuler(event);
scrubber.OnToggleScrubRuler();
break;
default:
wxASSERT(false);