]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/sockets/server.cpp
Add CombineURIs implementation for wxWebFileProtocolHandler. Update the IE backend...
[wxWidgets.git] / samples / sockets / server.cpp
index a57137cbede9bad612b41333c6da95212dfccc37..853fb4b278d9b022cfddbe416a544768147134e5 100644 (file)
@@ -217,8 +217,8 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
   // Create the socket
   m_server = new wxSocketServer(addr);
 
-  // We use Ok() here to see if the server is really listening
-  if (! m_server->Ok())
+  // We use IsOk() here to see if the server is really listening
+  if (! m_server->IsOk())
   {
     wxLogMessage("Could not listen at the specified port !");
     return;