From: Václav Slavík Date: Mon, 21 Feb 2000 08:37:39 +0000 (+0000) Subject: wxGTK compilation fix (wxFrame::Show call without argument) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ed323aeaa8c3e0516482a2e8996b507592848419 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 --- 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";