1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 00:20:06 +02:00

Fix exception at startup on some Linux builds...

... Initializing Scrubber::mWindow but we don't use that any more.

It became unused at commit a3b434be1cd42ff7c99821de4ea52c0945cb0baa
This commit is contained in:
Paul Licameli 2020-06-11 21:19:23 -04:00
parent ce07da936c
commit 4ac96376bb
2 changed files with 0 additions and 2 deletions

View File

@ -221,7 +221,6 @@ Scrubber::Scrubber(AudacityProject *project)
#endif
, mProject(project)
, mWindow( FindProjectFrame( project ) )
, mPoller { std::make_unique<ScrubPoller>(*this) }
, mOptions {}

View File

@ -177,7 +177,6 @@ private:
#endif
AudacityProject *mProject;
wxWindowRef mWindow;
DECLARE_EVENT_TABLE()