]> git.saurik.com Git - wxWidgets.git/commitdiff
wxGTK compilation fix (wxFrame::Show call without argument)
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Feb 2000 08:37:39 +0000 (08:37 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 21 Feb 2000 08:37:39 +0000 (08:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/ipc/server.cpp

index 3ad14aac9a8cb071229f82f6af9b610fc0a3d0f0..820bdefc8a94fcafc90351c9b506c3353d47455b 100644 (file)
@@ -70,7 +70,7 @@ MyConnection *the_connection = NULL;
 bool MyApp::OnInit()
 {
     // Create the main frame window
 bool MyApp::OnInit()
 {
     // Create the main frame window
-    (new MyFrame(NULL, "Server"))->Show();
+    (new MyFrame(NULL, "Server"))->Show(TRUE);
 
     // create the server object
     wxString server_name = "4242";
 
     // create the server object
     wxString server_name = "4242";