X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0912690b65b3c58c0e12870fb971675ca5572ae6..3100c3dbf3d8aeae4d2d68de91c14a0de399bd32:/include/wx/ffile.h diff --git a/include/wx/ffile.h b/include/wx/ffile.h index f61a97fd29..b9450458f5 100644 --- a/include/wx/ffile.h +++ b/include/wx/ffile.h @@ -60,9 +60,9 @@ public: // read/write (unbuffered) // read all data from the file into a string (useful for text files) - bool ReadAll(wxString *str); + bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8); // returns number of bytes read - use Eof() and Error() to see if an error - // occured or not + // occurred or not size_t Read(void *pBuf, size_t nCount); // returns the number of bytes written size_t Write(const void *pBuf, size_t nCount); @@ -92,7 +92,7 @@ public: bool IsOpened() const { return m_fp != NULL; } // is end of file reached? bool Eof() const { return feof(m_fp) != 0; } - // is an error occured? + // has an error occurred? bool Error() const { return ferror(m_fp) != 0; } // get the file name const wxString& GetName() const { return m_name; }