]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/private/selectdispatcher.h
allow passing wx[W]CharBuffer to wx vararg templates
[wxWidgets.git] / include / wx / private / selectdispatcher.h
index 04072c1be1df26995b331566d5cec5de8599d826..f174d1461f40789863511acbdb37dec711cb3e4a 100644 (file)
@@ -30,6 +30,9 @@ public:
 
     // called when there is exception on descriptor
     virtual void OnExceptionWaiting(int fd) = 0;
+
+    // virtual dtor for the base class
+    virtual ~wxFDIOHandler() { }
 };
 
 // those flags describes sets where descriptor should be added
@@ -72,7 +75,7 @@ public:
     void RunLoop(int timeout = wxSELECT_TIMEOUT_INFINITE);
 
 protected:
-    wxSelectDispatcher() { }
+    wxSelectDispatcher() { m_maxFD = -1; }
 
 private:
     void ProcessSets(fd_set* readset, fd_set* writeset, fd_set* exeptset, int max_fd);