mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
DolphinWX: Kill off trivial event tables
Also fixes some of the wonky stuff in Main where we would fire an event to do post-init stuff which isn't necessary anymore.
This commit is contained in:
@ -12,8 +12,6 @@
|
||||
|
||||
class CFrame;
|
||||
class wxLocale;
|
||||
class wxTimer;
|
||||
class wxTimerEvent;
|
||||
|
||||
extern CFrame* main_frame;
|
||||
|
||||
@ -31,9 +29,6 @@ private:
|
||||
void InitLanguageSupport();
|
||||
void MacOpenFile(const wxString &fileName);
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
wxTimer *m_afterinit;
|
||||
bool BatchMode;
|
||||
bool LoadFile;
|
||||
bool playMovie;
|
||||
@ -41,7 +36,7 @@ private:
|
||||
wxString movieFile;
|
||||
wxLocale *m_locale;
|
||||
|
||||
void AfterInit(wxTimerEvent& WXUNUSED(event));
|
||||
void AfterInit();
|
||||
void OnEndSession(wxCloseEvent& event);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user