X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9c26672d4dec695ef7d8955a4dbee43b854b8677..0cd159592e4d9c979aa5a626627cdd9158fcc34f:/include/wx/evtloop.h diff --git a/include/wx/evtloop.h b/include/wx/evtloop.h index 412fe4ea51..7d85458ff8 100644 --- a/include/wx/evtloop.h +++ b/include/wx/evtloop.h @@ -76,7 +76,7 @@ protected: // the pointer to currently active loop static wxEventLoopBase *ms_activeLoop; - DECLARE_NO_COPY_CLASS(wxEventLoopBase) + wxDECLARE_NO_COPY_CLASS(wxEventLoopBase); }; #if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXDFB__) || defined(__UNIX__) @@ -124,8 +124,12 @@ protected: #include "wx/msw/evtloop.h" #elif defined(__WXMAC__) #include "wx/osx/evtloop.h" +#elif defined(__WXCOCOA__) + #include "wx/cocoa/evtloop.h" #elif defined(__WXDFB__) #include "wx/dfb/evtloop.h" +#elif defined(__WXGTK20__) + #include "wx/gtk/evtloop.h" #else // other platform #include "wx/stopwatch.h" // for wxMilliClock_t @@ -162,7 +166,7 @@ protected: // the pointer to the port specific implementation class wxEventLoopImpl *m_impl; - DECLARE_NO_COPY_CLASS(wxGUIEventLoop) + wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop); }; #endif // platforms