X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..92850d6b2ff6072f4801152fd6bfdb7263715ec0:/src/common/textfile.cpp diff --git a/src/common/textfile.cpp b/src/common/textfile.cpp index 0e73b1c891..25503be862 100644 --- a/src/common/textfile.cpp +++ b/src/common/textfile.cpp @@ -6,7 +6,7 @@ // Created: 03.04.98 // RCS-ID: $Id$ // Copyright: (c) 1998 Vadim Zeitlin -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -97,30 +97,30 @@ bool wxTextFile::OnRead(wxMBConv& conv) char *strBuf, *strPtr, *strEnd; char ch, chLast = '\0'; char buf[1024]; - int n, nRead; + size_t nRead; strPtr = strBuf = new char[1024]; strEnd = strBuf + 1024; - do + do { nRead = m_file.Read(buf, WXSIZEOF(buf)); - if ( nRead == wxInvalidOffset ) + if ( nRead == (size_t)wxInvalidOffset ) { // read error (error message already given in wxFile::Read) delete[] strBuf; - return FALSE; + return false; } - for (n = 0; n < nRead; n++) + for (size_t n = 0; n < nRead; n++) { ch = buf[n]; - switch ( ch ) + switch ( ch ) { case '\n': // Dos/Unix line termination *strPtr = '\0'; - AddLine(wxString(strBuf, conv), + AddLine(wxString(strBuf, conv), chLast == '\r' ? wxTextFileType_Dos : wxTextFileType_Unix); strPtr = strBuf; @@ -128,7 +128,7 @@ bool wxTextFile::OnRead(wxMBConv& conv) break; case '\r': - if ( chLast == '\r' ) + if ( chLast == '\r' ) { // Mac empty line AddLine(wxEmptyString, wxTextFileType_Mac); @@ -147,7 +147,7 @@ bool wxTextFile::OnRead(wxMBConv& conv) strPtr = strBuf; *(strPtr++) = ch; } - else + else { // add to the current line *(strPtr++) = ch; @@ -168,15 +168,15 @@ bool wxTextFile::OnRead(wxMBConv& conv) } while ( nRead == WXSIZEOF(buf) ); // anything in the last line? - if ( strPtr != strBuf ) + if ( strPtr != strBuf ) { *strPtr = '\0'; - AddLine(wxString(strBuf, conv), + AddLine(wxString(strBuf, conv), wxTextFileType_None); // no line terminator } delete[] strBuf; - return TRUE; + return true; } @@ -194,7 +194,7 @@ bool wxTextFile::OnWrite(wxTextFileType typeNew, wxMBConv& conv) if ( !fileTmp.IsOpened() ) { wxLogError(_("can't write buffer '%s' to disk."), m_strBufferName.c_str()); - return FALSE; + return false; } size_t nCount = GetLineCount();