* prgodlgg.h: Update() use wxString instead of 'char *'
* wxThread: fixes (all should work fluently now) * wxSocket: it is at last usable on my computer GTK/GLIB problem : reenabling the idle event propagation causes very strange problem (Instruction pointer/memory) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -132,7 +132,7 @@ void MyFrame::OnSockRequestServer(wxSocketEvent& evt)
|
||||
if (sock2 == NULL)
|
||||
return;
|
||||
|
||||
sock2->SetFlags(wxSocketBase::NONE);
|
||||
sock2->SetFlags(wxSocketBase::SPEED);
|
||||
sock2->Notify(TRUE);
|
||||
sock2->SetEventHandler(*this, SKDEMO_SOCKET);
|
||||
server->SetNotify(wxSocketBase::REQ_ACCEPT);
|
||||
@@ -154,6 +154,7 @@ MyFrame::MyFrame(wxFrame *frame):
|
||||
wxSocketHandler::Master().Register(sock);
|
||||
sock->SetNotify(wxSocketBase::REQ_ACCEPT);
|
||||
sock->SetEventHandler(*this, SKDEMO_SOCKET_SERV);
|
||||
sock->SetFlags(wxSocketBase::SPEED);
|
||||
sock->Notify(TRUE);
|
||||
nb_clients = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user