]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textfile.cpp
Committing in .
[wxWidgets.git] / src / common / textfile.cpp
index 951f54e88dbbe13a9a9ca80ae90a53ce1b976a70..604bb54c4c46401f91bf461ff6da8e3175ac12c6 100644 (file)
@@ -97,7 +97,7 @@ bool wxTextFile::OnRead(wxMBConv& conv)
     char *strBuf, *strPtr, *strEnd;
     char ch, chLast = '\0';
     char buf[1024];
-    int n, nRead;
+    wxFileSize_t nRead;
 
     strPtr = strBuf = new char[1024];
     strEnd = strBuf + 1024;
@@ -112,7 +112,7 @@ bool wxTextFile::OnRead(wxMBConv& conv)
             return false;
         }
 
-        for (n = 0; n < nRead; n++)
+        for (wxFileSize_t n = 0; n < nRead; n++)
         {
             ch = buf[n];
             switch ( ch )