1
0
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:
james.k.crook@gmail.com
2014-10-12 21:57:39 +00:00
parent 6e07efa539
commit 44808022e1
2 changed files with 41 additions and 16 deletions

View File

@@ -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();