]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/sockets/client.cpp
Use a non-native toolbar on Mac so small buttons aren't stretched horribly.
[wxWidgets.git] / samples / sockets / client.cpp
index b45ccb3f0962549db777ef00ea73553e77566c11..342be4e3cfb9ba56efb419cd6a6ed05c50a664c0 100644 (file)
@@ -190,9 +190,8 @@ bool MyApp::OnInit()
   // Create the main application window
   MyFrame *frame = new MyFrame();
 
-  // Show it and tell the application that it's our main window
+  // Show it
   frame->Show(true);
-  SetTopWindow(frame);
 
   // success
   return true;
@@ -212,7 +211,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, wxID_ANY,
 
   // Make menus
   m_menuFile = new wxMenu();
-  m_menuFile->Append(CLIENT_ABOUT, _("&About...\tCtrl-A"), _("Show about dialog"));
+  m_menuFile->Append(CLIENT_ABOUT, _("&About\tCtrl-A"), _("Show about dialog"));
   m_menuFile->AppendSeparator();
   m_menuFile->Append(CLIENT_QUIT, _("E&xit\tAlt-X"), _("Quit client"));