wxUSE_STL compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-10-12 22:27:49 +00:00
parent 3afc646cae
commit 6b6b233ac0

View File

@@ -99,7 +99,7 @@ wxSocketClientPtr SocketTestCase::GetHTTPSocket(int flags) const
"Host: " + gs_serverHost + "\r\n" "Host: " + gs_serverHost + "\r\n"
"\r\n"; "\r\n";
sock->Write(httpGetRoot, httpGetRoot.length()); sock->Write(httpGetRoot.ToAscii(), httpGetRoot.length());
ptr.reset(sock); ptr.reset(sock);
return ptr; return ptr;