From 579213e97b34f35ba1661c6d5b553d2989caddaf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 29 Nov 2008 22:52:14 +0000 Subject: [PATCH] compilation fix after making wxSocketImpl derive from wxFDIOHandler git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/core/sockosx.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osx/core/sockosx.cpp b/src/osx/core/sockosx.cpp index 08dbd21815..f940120738 100644 --- a/src/osx/core/sockosx.cpp +++ b/src/osx/core/sockosx.cpp @@ -137,15 +137,15 @@ private: // timeframe so I'm not sure what to think, but after so many hours, // this seems to address the issue and it's time to move on. if (data == NULL) - socket->Detected_Write(); + socket->OnWriteWaiting(); break; case kCFSocketReadCallBack: - socket->Detected_Read(); + socket->OnReadWaiting(); break; case kCFSocketWriteCallBack: - socket->Detected_Write(); + socket->OnWriteWaiting(); break; default: -- 2.50.0