Added GSocket for Unix (only GTK for the moment)
Updated wxSocket to use GSocket API Added a progress bar to client.cpp Added CopyTo to wxMemoryOutputStream to copy the internal buffer to a specified buffer. Various changes/fixes to the high-level protocols FTP/HTTP Various Unicode fixes Removed sckint.* git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3085 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -208,7 +208,6 @@ bool wxURL::FetchProtocol()
|
||||
|
||||
m_protoinfo = info;
|
||||
m_protocol = (wxProtocol *)m_protoinfo->m_cinfo->CreateObject();
|
||||
wxSocketHandler::Master().Register(m_protocol);
|
||||
return TRUE;
|
||||
}
|
||||
info = info->next;
|
||||
@@ -323,7 +322,7 @@ wxString wxURL::ConvertToValidURI(const wxString& uri)
|
||||
|
||||
if (!isalpha(c) && c != _T('.') && c != _T('+') && c != _T('.') &&
|
||||
c != _T('/')) {
|
||||
hexa_code.Printf(_T("%02X"), c);
|
||||
hexa_code.Printf(_T("%%%02X"), c);
|
||||
out_str += hexa_code;
|
||||
} else
|
||||
out_str += c;
|
||||
|
Reference in New Issue
Block a user