]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/http.cpp
added support for range types to runtime depersister
[wxWidgets.git] / src / common / http.cpp
index 4a59548bf39c6b67b93052472791dcc8d93b6f9c..3f5a86b4ae3d832cb96ed01bc321e93ee81d5505 100644 (file)
@@ -9,7 +9,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
   #pragma implementation "http.h"
 #endif
 
@@ -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)