wxSocketImpl::Shutdown() doesn't need to be virtual, its implementation can the same in Unix and Win32 versions (events are already disabled by Close() so there is no need to do it again explicitly under Unix)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-27 22:03:34 +00:00
parent 7d66cdccd0
commit 62088a3c3b
3 changed files with 13 additions and 15 deletions

View File

@@ -31,8 +31,6 @@ public:
virtual wxSocketError GetLastError() const;
virtual void Shutdown();
virtual int Read(void *buffer, int size);
virtual int Write(const void *buffer, int size);