]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/sockets/client.cpp
Fix the condition to always #define wxMOTIF_NEW_FONT_HANDLING
[wxWidgets.git] / samples / sockets / client.cpp
index 396d79a7d8d98f67d2afab3ba8b7f1c547e735b0..6acab6716f35bd16ace06c98ff63a2a60dd54104 100644 (file)
@@ -112,9 +112,9 @@ private:
 enum
 {
   // menu items
-  CLIENT_QUIT = 1000,
-  CLIENT_ABOUT,
-  CLIENT_OPEN,
+  CLIENT_QUIT = wxID_EXIT,
+  CLIENT_ABOUT = wxID_ABOUT,
+  CLIENT_OPEN = 100,
   CLIENT_TEST1,
   CLIENT_TEST2,
   CLIENT_TEST3,
@@ -290,7 +290,7 @@ void MyFrame::OnOpenConnection(wxCommandEvent& WXUNUSED(event))
   //
   // Connect(addr, false) will issue a nonblocking connection request
   // and return immediately. If the return value is true, then the
-  // connection has been already succesfully established. If it is
+  // connection has been already successfully established. If it is
   // false, you must wait for the request to complete, either with
   // WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST
   // events (please read the documentation).