]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/evtloop.h
don't redeclare vsscanf() for Windows compilers, the case of missing declaration...
[wxWidgets.git] / include / wx / mac / carbon / evtloop.h
index 653615a2851c296c6881ea52ab064993b69f6988..5cf323876dde47f713caff871b7d19decacf615e 100644 (file)
@@ -29,7 +29,7 @@
 
 #if wxMAC_USE_RUN_APP_EVENT_LOOP
 
-class WXDLLEXPORT wxGUIEventLoop : public wxEventLoopBase
+class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase
 {
 public:
     wxGUIEventLoop() { m_exitcode = 0; }
@@ -46,7 +46,7 @@ private:
 
 #else // manual event loop
 
-class WXDLLEXPORT wxGUIEventLoop : public wxEventLoopManual
+class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopManual
 {
 public:
     wxGUIEventLoop() { }
@@ -54,7 +54,6 @@ public:
     virtual bool Pending() const;
     virtual bool Dispatch();
 
-protected:
     // implement base class pure virtual
     virtual void WakeUp();
 };