]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/ipc/server.cpp
technote about translations added
[wxWidgets.git] / samples / ipc / server.cpp
index 4763f877e8669bbcbcb599fe49fc4b768a1b164c..820bdefc8a94fcafc90351c9b506c3353d47455b 100644 (file)
@@ -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";
@@ -215,7 +215,7 @@ bool MyConnection::OnPoke(const wxString& WXUNUSED(topic),
                           int WXUNUSED(size),
                           wxIPCFormat WXUNUSED(format))
 {
-    wxLogStatus("Poke command: %s = %s", item, data);
+    wxLogStatus("Poke command: %s = %s", item.c_str(), data);
     return TRUE;
 }