X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71414756b2cb4d64ee167e61f3fa4854c4f2a85b..3d3a4a25addf9729c74a8d0f7a056b57bb7f7e2a:/src/common/http.cpp diff --git a/src/common/http.cpp b/src/common/http.cpp index 4a59548bf3..9758181c72 100644 --- a/src/common/http.cpp +++ b/src/common/http.cpp @@ -103,7 +103,7 @@ wxString wxHTTP::GetHeader(const wxString& header) const { wxHeaderIterator it = FindHeader(header); - return it == m_headers.end() ? wxEmptyString : it->second; + return it == m_headers.end() ? wxGetEmptyString() : it->second; } void wxHTTP::SetPostBuffer(const wxString& post_buf)