make wxFDIOHandler dtor virtual, it's meant to be used as a base class

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-16 16:17:04 +00:00
parent 30c45bdd06
commit 72fa3e8a21

View File

@@ -30,6 +30,9 @@ public:
// called when there is exception on descriptor // called when there is exception on descriptor
virtual void OnExceptionWaiting(int fd) = 0; virtual void OnExceptionWaiting(int fd) = 0;
// virtual dtor for the base class
virtual ~wxFDIOHandler() { }
}; };
// those flags describes sets where descriptor should be added // those flags describes sets where descriptor should be added