]> git.saurik.com Git - wxWidgets.git/commitdiff
make wxSocketBase::SetTimeout virtual and make it protected in wxFTP
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 16 Jan 2009 13:34:44 +0000 (13:34 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Fri, 16 Jan 2009 13:34:44 +0000 (13:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/protocol/ftp.h
include/wx/socket.h

index 21312e87fd6a27e27f15643c96878171e1a1d938..c2c2cc2a3876b284b9f32b94633ed71d4a1cb182 100644 (file)
@@ -2,7 +2,7 @@
 // Name:        ftp.h
 // Purpose:     FTP protocol
 // Author:      Vadim Zeitlin
-// Modified by: Mark Johnson, wxWindows@mj10777.de 
+// Modified by: Mark Johnson, wxWindows@mj10777.de
 //              20000917 : RmDir, GetLastResult, GetList
 // Created:     07/07/1997
 // RCS-ID:      $Id$
@@ -42,7 +42,7 @@ public:
     bool Connect(const wxString& host);
 
     // disconnect
-    virtual bool Close();
+    virtual bool Close();       // does NOT set m_lastError
 
     // Parameters set up
 
@@ -81,7 +81,7 @@ public:
 
     // Get the size of a file in the current dir.
     // this function tries its best to deliver the size in bytes using BINARY
-    // (the SIZE command reports different sizes depending on whether 
+    // (the SIZE command reports different sizes depending on whether
     // type is set to ASCII or BINARY)
     // returns -1 if file is non-existant or size could not be found
     int GetFileSize(const wxString& fileName);
@@ -119,6 +119,11 @@ public:
                  bool details = false);
 
 protected:
+    // just change access from public to protected for this wxSocketBase function:
+    // use SetDefaultTimeout instead which also sets our m_uiDefaultTimeout var
+    virtual void SetTimeout(long seconds)
+        { wxSocketBase::SetTimeout(seconds); }
+
     // this executes a simple ftp command with the given argument and returns
     // true if it its return code starts with '2'
     bool DoSimpleCommand(const wxChar *command,
index c3d655173d56b3b467094257e569117e06b10833..628605f606453aa52a913350f09ddcfc64a9c6b4 100644 (file)
@@ -165,7 +165,7 @@ public:
 
     wxSocketFlags GetFlags() const { return m_flags; }
     void SetFlags(wxSocketFlags flags);
-    void SetTimeout(long seconds);
+    virtual void SetTimeout(long seconds);
     long GetTimeout() const { return m_timeout; }
 
     bool GetOption(int level, int optname, void *optval, int *optlen);