mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 17:11:12 +02:00
Split Inits between OnInit() and FinishInits()
This is after reading a note in the release notes for wxWidgets 3.0.0. We need an event loop running to show a dialog in 3.0.0 (even though the splash screen works without).
This commit is contained in:
@@ -96,6 +96,10 @@ class BlockFile;
|
||||
class AudacityApp:public wxApp {
|
||||
public:
|
||||
virtual bool OnInit(void);
|
||||
void FinishInits();
|
||||
#if wxCHECK_VERSION(3, 0, 0)
|
||||
virtual void OnEventLoopEnter(wxEventLoopBase * pLoop);
|
||||
#endif
|
||||
virtual int OnExit(void);
|
||||
virtual void OnFatalException();
|
||||
|
||||
|
Reference in New Issue
Block a user