]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed compiler error
authorRobin Dunn <robin@alldunn.com>
Fri, 30 Jul 1999 04:28:24 +0000 (04:28 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 30 Jul 1999 04:28:24 +0000 (04:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/url.cpp

index db4517e3d97f3b2a901af5da2e477eea03982c6a..a51ee7b2731d0b7511756b8e6e9db92273206154 100644 (file)
@@ -256,6 +256,8 @@ wxInputStream *wxURL::GetInputStream(void)
   }
 
 #if wxUSE_SOCKETS
+    wxIPV4address addr;
+
   // m_protoinfo is NULL when we use a proxy
   if (!m_useProxy && m_protoinfo->m_needhost) {
     if (!addr.Hostname(m_hostname)) {
@@ -263,7 +265,6 @@ wxInputStream *wxURL::GetInputStream(void)
       return NULL;
     }
 
-    wxIPV4address addr;
     addr.Service(m_servname);
 
     if (!m_protocol->Connect(addr, TRUE)) // Watcom needs the 2nd arg for some reason
@@ -373,14 +374,14 @@ wxString wxURL::ConvertToValidURI(const wxString& uri)
     if (c == _T(' '))
       out_str += _T('+');
     else {
-      if (!isalpha(c) && c != _T('.') && c != _T('+') && c != _T('/')) { 
+      if (!isalpha(c) && c != _T('.') && c != _T('+') && c != _T('/')) {
         hexa_code.Printf(_T("%%%02X"), c);
         out_str += hexa_code;
       } else
         out_str += c;
     }
   }
-  
+
   return out_str;
 }