From 6b6b233ac081795be7ed83b836122aeb123a7372 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 12 Oct 2008 22:27:49 +0000 Subject: [PATCH] wxUSE_STL compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/net/socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/net/socket.cpp b/tests/net/socket.cpp index e77ff20aba..7929b5ae34 100644 --- a/tests/net/socket.cpp +++ b/tests/net/socket.cpp @@ -99,7 +99,7 @@ wxSocketClientPtr SocketTestCase::GetHTTPSocket(int flags) const "Host: " + gs_serverHost + "\r\n" "\r\n"; - sock->Write(httpGetRoot, httpGetRoot.length()); + sock->Write(httpGetRoot.ToAscii(), httpGetRoot.length()); ptr.reset(sock); return ptr; -- 2.47.2