From: Ron Lee Date: Tue, 25 Jan 2000 18:49:24 +0000 (+0000) Subject: fixed _T typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d24905b5e47a0bc6e879a55f5e0c694f82621199 fixed _T typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/sockets/client.cpp b/samples/sockets/client.cpp index e21a1e2542..9b2fc20c5f 100644 --- a/samples/sockets/client.cpp +++ b/samples/sockets/client.cpp @@ -182,7 +182,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *)NULL, -1, m_menuSocket->Append(CLIENT_CLOSE, _T("&Close session"), _T("Close connection")); m_menuDatagramSocket = new wxMenu(); - m_menuDatagramSocket->Append(CLIENT_DGRAM, _T("Send Datagram"), _("Test UDP sockets")); + m_menuDatagramSocket->Append(CLIENT_DGRAM, _T("Send Datagram"), _T("Test UDP sockets")); // Append menus to the menubar m_menuBar = new wxMenuBar();