]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
small fix to the msg catalog search path
[wxWidgets.git] / src / common / ftp.cpp
index 80c0e1a057c0513b1f4c0224dcc89b63ac1c4e2a..e9db032f8e2f761fa9f0217f76bc3e0cdd6361ba 100644 (file)
@@ -71,6 +71,11 @@ wxFTP::wxFTP()
 
 wxFTP::~wxFTP()
 {
+    if ( m_streaming )
+    {
+        (void)Abort();
+    }
+
     Close();
 }
 
@@ -122,17 +127,12 @@ bool wxFTP::Connect(const wxString& host)
   return Connect(addr);
 }
 
-bool wxFTP::Close(bool force)
+bool wxFTP::Close()
 {
     if ( m_streaming )
     {
-        if ( !force )
-        {
-            m_lastError = wxPROTO_STREAMING;
-            return FALSE;
-        }
-
-        (void)Abort();
+        m_lastError = wxPROTO_STREAMING;
+        return FALSE;
     }
 
     if ( IsConnected() )