]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
Close wxDataViewCtrl inline editor when destroying the control.
[wxWidgets.git] / src / common / ftp.cpp
index 17d9c5ce04271fbcbee75b74140a28c46bc29f9f..d1bc22eeecba79845ea3b8f5dc79ae92039b1427 100644 (file)
@@ -587,9 +587,9 @@ wxSocketBase *wxFTP::GetActivePort()
     addrNew.Service(0); // pick an open port number.
 
     wxSocketServer *sockSrv = new wxSocketServer(addrNew);
-    if (!sockSrv->Ok())
+    if (!sockSrv->IsOk())
     {
-        // We use Ok() here to see if everything is ok
+        // We use IsOk() here to see if everything is ok
         m_lastError = wxPROTO_PROTERR;
         delete sockSrv;
         return NULL;
@@ -686,7 +686,7 @@ public:
 
         // when checking the result, the stream will
         // almost always show an error, even if the file was
-        // properly transfered, thus, lets just grab the result
+        // properly transfered, thus, let's just grab the result
 
         // we are looking for "226 transfer completed"
         char code = m_ftp->GetResult();