]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
wxStringList::Sort() bug corrected
[wxWidgets.git] / src / common / ftp.cpp
index 62161ada7aa6b8a90c60954f3f6b94f3b238fb31..ee2ac234d569f2f333a3f8c3758252079f266226 100644 (file)
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef __MWERKS__
 #include <memory.h>
+#endif
 #include <stdlib.h>
 #include "wx/string.h"
 #include "wx/utils.h"
@@ -154,12 +160,12 @@ bool wxFTP::GetResult(char exp)
 {
   if ((m_lastError = GetLine(this, m_lastResult)))
     return FALSE;
-  if (m_lastResult[0] != exp) {
+  if (m_lastResult.GetChar(0) != exp) {
     m_lastError = wxPROTO_PROTERR;
     return FALSE;
   }
 
-  if (m_lastResult[3] == '-') {
+  if (m_lastResult.GetChar(3) == '-') {
     wxString key = m_lastResult.Left((size_t)3);
 
     key += ' ';