X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9832ce0bcc99b714e63c2d6b18c4b0059425a1f7..eba330067e87ccec9c8af7bd8b1023044e6d39e3:/samples/dialup/nettest.cpp diff --git a/samples/dialup/nettest.cpp b/samples/dialup/nettest.cpp index 7e31dad045..2e7e365804 100644 --- a/samples/dialup/nettest.cpp +++ b/samples/dialup/nettest.cpp @@ -199,7 +199,7 @@ void MyApp::OnConnected(wxDialUpEvent& event) msg = event.IsConnectedEvent() ? wxT("Successfully connected") : wxT("Dialing failed"); - wxLogStatus(wxT("")); + wxLogStatus(wxEmptyString); } else { @@ -256,10 +256,10 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) { wxString msg; - msg.Printf(_T("This is the network functions test sample.\n" - "© 1999 Vadim Zeitlin")); + msg.Printf( wxT("This is the network functions test sample.\n") + wxT("© 1999 Vadim Zeitlin") ); - wxMessageBox(msg, _T("About NetTest"), wxOK | wxICON_INFORMATION, this); + wxMessageBox(msg, wxT("About NetTest"), wxOK | wxICON_INFORMATION, this); } void MyFrame::OnHangUp(wxCommandEvent& WXUNUSED(event))