Addition of missing overrides to app.h
This commit is contained in:
@@ -38,21 +38,21 @@ class WXDLLIMPEXP_CORE wxApp: public wxAppBase
|
|||||||
wxApp();
|
wxApp();
|
||||||
virtual ~wxApp();
|
virtual ~wxApp();
|
||||||
|
|
||||||
virtual void WakeUpIdle();
|
virtual void WakeUpIdle() wxOVERRIDE;
|
||||||
|
|
||||||
virtual void SetPrintMode(int mode) { m_printMode = mode; }
|
virtual void SetPrintMode(int mode) wxOVERRIDE { m_printMode = mode; }
|
||||||
virtual int GetPrintMode() const { return m_printMode; }
|
virtual int GetPrintMode() const { return m_printMode; }
|
||||||
|
|
||||||
// calling OnInit with an auto-release pool ready ...
|
// calling OnInit with an auto-release pool ready ...
|
||||||
virtual bool CallOnInit();
|
virtual bool CallOnInit() wxOVERRIDE;
|
||||||
#if wxUSE_GUI
|
#if wxUSE_GUI
|
||||||
// setting up all MacOS Specific Event-Handlers etc
|
// setting up all MacOS Specific Event-Handlers etc
|
||||||
virtual bool OnInitGui();
|
virtual bool OnInitGui() wxOVERRIDE;
|
||||||
#endif // wxUSE_GUI
|
#endif // wxUSE_GUI
|
||||||
|
|
||||||
virtual int OnRun();
|
virtual int OnRun() wxOVERRIDE;
|
||||||
|
|
||||||
virtual bool ProcessIdle();
|
virtual bool ProcessIdle() wxOVERRIDE;
|
||||||
|
|
||||||
// implementation only
|
// implementation only
|
||||||
void OnIdle(wxIdleEvent& event);
|
void OnIdle(wxIdleEvent& event);
|
||||||
@@ -67,8 +67,8 @@ public:
|
|||||||
|
|
||||||
static bool sm_isEmbedded;
|
static bool sm_isEmbedded;
|
||||||
// Implementation
|
// Implementation
|
||||||
virtual bool Initialize(int& argc, wxChar **argv);
|
virtual bool Initialize(int& argc, wxChar **argv) wxOVERRIDE;
|
||||||
virtual void CleanUp();
|
virtual void CleanUp() wxOVERRIDE;
|
||||||
|
|
||||||
// the installed application event handler
|
// the installed application event handler
|
||||||
WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
|
WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
|
||||||
|
Reference in New Issue
Block a user