]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/socket.tex
Removed wxMMedia classes doc from the main wx doc
[wxWidgets.git] / docs / latex / wx / socket.tex
index 269f5397aadf5bcc93266f2380161eb415a53647..263aeb58f5bcb543644023998b3011729714d521 100644 (file)
@@ -1037,8 +1037,8 @@ These semantics allow code like this:
 client->Connect(addr, FALSE);
 
 // Wait until the request completes or until we decide to give up
-bool waitmore;
-while ( !WaitOnConnect(seconds, millis) && waitmore )
+bool waitmore = TRUE; 
+while ( !client->WaitOnConnect(seconds, millis) && waitmore )
 {
     // possibly give some feedback to the user,
     // and update waitmore if needed.