]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
Sorry folks, a lot of changes to remedy GetFont, GetBrush etc.
[wxWidgets.git] / src / common / ftp.cpp
index 498548bed2ae5e89bde73239334533925916b755..5d1731ad7743700c1b88aff13b4e5aab8efe61fa 100644 (file)
 #ifdef __GNUG__
 #pragma implementation "ftp.h"
 #endif
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
 #include <memory.h>
 #include <stdlib.h>
 #include "wx/string.h"
@@ -150,12 +158,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 += ' ';