X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5dbe15d0bacde245539f54c4d97af6b4696f01f..c2a738e372126950e5c70f72a3e8876f1ac89bf5:/include/wx/palmos/app.h?ds=sidebyside diff --git a/include/wx/palmos/app.h b/include/wx/palmos/app.h index 4289b470c2..0590f5e589 100644 --- a/include/wx/palmos/app.h +++ b/include/wx/palmos/app.h @@ -23,7 +23,7 @@ class WXDLLIMPEXP_FWD_BASE wxLog; // Represents the application. Derive OnInit and declare // a new App object to start application -class WXDLLEXPORT wxApp : public wxAppBase +class WXDLLIMPEXP_CORE wxApp : public wxAppBase { DECLARE_DYNAMIC_CLASS(wxApp) @@ -35,7 +35,6 @@ public: virtual bool Initialize(int& argc, wxChar **argv); virtual void CleanUp(); - virtual bool Yield(bool onlyIfNeeded = false); virtual void WakeUpIdle(); virtual void SetPrintMode(int mode) { m_printMode = mode; } @@ -73,7 +72,7 @@ public: protected: DECLARE_EVENT_TABLE() - DECLARE_NO_COPY_CLASS(wxApp) + wxDECLARE_NO_COPY_CLASS(wxApp); }; // ---------------------------------------------------------------------------- @@ -84,8 +83,7 @@ protected: #define SW_SHOWNORMAL 1 #endif -extern int WXDLLEXPORT -wxEntry(); +extern WXDLLIMPEXP_CORE int wxEntry(); #define IMPLEMENT_WXWIN_MAIN \ \