X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71d59a4dc5e651597c41686267193cc2b7de108d..2d14a14c573db4b8f8959b1460a269cf23defbcf:/include/wx/mgl/app.h?ds=inline diff --git a/include/wx/mgl/app.h b/include/wx/mgl/app.h index 7a5e0b0f1f..40b6e0bf68 100644 --- a/include/wx/mgl/app.h +++ b/include/wx/mgl/app.h @@ -18,15 +18,15 @@ // classes //----------------------------------------------------------------------------- -class WXDLLEXPORT wxApp; -class WXDLLEXPORT wxLog; -class WXDLLEXPORT wxEventLoop; +class WXDLLIMPEXP_FWD_CORE wxApp; +class WXDLLIMPEXP_FWD_BASE wxLog; +class WXDLLIMPEXP_FWD_CORE wxEventLoop; //----------------------------------------------------------------------------- // wxApp //----------------------------------------------------------------------------- -class WXDLLEXPORT wxApp: public wxAppBase +class WXDLLIMPEXP_CORE wxApp: public wxAppBase { public: wxApp(); @@ -44,14 +44,12 @@ public: virtual void Exit(); virtual void WakeUpIdle(); - virtual bool Yield(bool onlyIfNeeded = FALSE); virtual wxVideoMode GetDisplayMode() const { return m_displayMode; } virtual bool SetDisplayMode(const wxVideoMode& mode); private: DECLARE_DYNAMIC_CLASS(wxApp) - DECLARE_EVENT_TABLE() wxVideoMode m_displayMode; };