From 72fa3e8a218ea7a521410dda24803a608e3f04ca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 16 Mar 2007 16:17:04 +0000 Subject: [PATCH] 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 --- include/wx/private/selectdispatcher.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/private/selectdispatcher.h b/include/wx/private/selectdispatcher.h index 04072c1be1..2b43b03aa7 100644 --- a/include/wx/private/selectdispatcher.h +++ b/include/wx/private/selectdispatcher.h @@ -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 -- 2.50.0