// 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__)
#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
// the pointer to the port specific implementation class
wxEventLoopImpl *m_impl;
- DECLARE_NO_COPY_CLASS(wxGUIEventLoop)
+ wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop);
};
#endif // platforms