Fix wxSocket::WaitForAccept() in worker thread.

This was broken because Select() never returned wxSOCKET_CONNECTION_FLAG which
is supposed to be set when a connection is accepted.

Closes #15669.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75211 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-11-16 23:40:53 +00:00
parent ab48d82990
commit 87ebc943d4
2 changed files with 23 additions and 1 deletions

View File

@@ -574,6 +574,10 @@ Major new features in this release
3.0.1: (released 2014-xx-xx)
----------------------------
All:
- Fix wxSocket::WaitForAccept() in non-main thread (Hajo Kirchhoff).
All (GUI):
- Fix crash when setting invalid label ending with "&" (ZaneUJi).