X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..3b49331b7441e091fc5997b830801d76a1243f28:/include/wx/sckstrm.h diff --git a/include/wx/sckstrm.h b/include/wx/sckstrm.h index 30d0130757..60fced8eb2 100644 --- a/include/wx/sckstrm.h +++ b/include/wx/sckstrm.h @@ -21,7 +21,7 @@ class WXDLLIMPEXP_NET wxSocketOutputStream : public wxOutputStream { public: wxSocketOutputStream(wxSocketBase& s); - ~wxSocketOutputStream(); + virtual ~wxSocketOutputStream(); wxFileOffset SeekO( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } @@ -40,7 +40,7 @@ class WXDLLIMPEXP_NET wxSocketInputStream : public wxInputStream { public: wxSocketInputStream(wxSocketBase& s); - ~wxSocketInputStream(); + virtual ~wxSocketInputStream(); wxFileOffset SeekI( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) ) { return -1; } @@ -60,7 +60,7 @@ class WXDLLIMPEXP_NET wxSocketStream : public wxSocketInputStream, { public: wxSocketStream(wxSocketBase& s); - ~wxSocketStream(); + virtual ~wxSocketStream(); DECLARE_NO_COPY_CLASS(wxSocketStream) };