]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/private/epolldispatcher.h
remove extraneous class scope qualifier
[wxWidgets.git] / include / wx / unix / private / epolldispatcher.h
index f76cf6e8d71971db850b526eb4aa3c5a528c91a9..d689ea243cd3c0ea9b8fa5e0fb265cf9e50e74c0 100644 (file)
@@ -26,11 +26,13 @@ public:
     // the caller should delete the returned pointer
     static wxEpollDispatcher *Create();
 
+    virtual ~wxEpollDispatcher();
+
     // implement base class pure virtual methods
     virtual bool RegisterFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool ModifyFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool UnregisterFD(int fd);
-    virtual void Dispatch(int timeout = TIMEOUT_INFINITE);
+    virtual bool Dispatch(int timeout = TIMEOUT_INFINITE);
 
 private:
     // ctor is private, use Create()