]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/sockosx.cpp
compilation fix after making wxSocketImpl derive from wxFDIOHandler
[wxWidgets.git] / src / osx / core / sockosx.cpp
index 08dbd21815e14f0245a401c2af2e0e23ac301dd9..f94012073890c2d62ac98438522b51fad4890857 100644 (file)
@@ -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: