]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/evtloop.h
Removed redundant code
[wxWidgets.git] / include / wx / evtloop.h
index 59c2f5e5f277aa7e146a3b4bd7e0ac455a93829e..adbb15efa01d128190b5b464f624480ec3878c8d 100644 (file)
@@ -66,7 +66,7 @@ protected:
     DECLARE_NO_COPY_CLASS(wxEventLoopBase)
 };
 
-#if defined(__WXMSW__) || defined(__WXMAC__)
+#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXDFB__)
 
 // this class can be used to implement a standard event loop logic using
 // Pending() and Dispatch()
@@ -83,7 +83,7 @@ public:
 
     // sets the "should exit" flag and wakes up the loop so that it terminates
     // soon
-    virtual void Exit(int rc);
+    virtual void Exit(int rc = 0);
 
 protected:
     // implement this to wake up the loop: usually done by posting a dummy event
@@ -115,6 +115,8 @@ protected:
     #include "wx/msw/evtloop.h"
 #elif defined(__WXMAC__)
     #include "wx/mac/evtloop.h"
+#elif defined(__WXDFB__)
+    #include "wx/dfb/evtloop.h"
 #else // other platform
 
 class WXDLLEXPORT wxEventLoopImpl;