From ed323aeaa8c3e0516482a2e8996b507592848419 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 21 Feb 2000 08:37:39 +0000 Subject: [PATCH] wxGTK compilation fix (wxFrame::Show call without argument) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/ipc/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ipc/server.cpp b/samples/ipc/server.cpp index 3ad14aac9a..820bdefc8a 100644 --- a/samples/ipc/server.cpp +++ b/samples/ipc/server.cpp @@ -70,7 +70,7 @@ MyConnection *the_connection = NULL; 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"; -- 2.45.2