From: David Elliott Date: Thu, 10 Jul 2003 12:27:26 +0000 (+0000) Subject: Use wxGetEmptyString() so the types in the ?: statement are both wxString X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/01482482504acd002914a8385cf8906c3f4d8648 Use wxGetEmptyString() so the types in the ?: statement are both wxString git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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)