X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc985face55ed02c310860afefc8e6d656fb849d..7dee726c7e569dbf73956d2f2fa63317aa83d85f:/include/wx/wfstream.h diff --git a/include/wx/wfstream.h b/include/wx/wfstream.h index 65313efd05..efd9317e1f 100644 --- a/include/wx/wfstream.h +++ b/include/wx/wfstream.h @@ -33,7 +33,7 @@ class wxFileInputStream: public wxInputStream { ~wxFileInputStream(); char Peek(); - size_t StreamSize() const; + size_t GetSize() const; bool Ok() const { return m_file->IsOpened(); } @@ -61,7 +61,7 @@ class wxFileOutputStream: public wxOutputStream { // { return wxOutputStream::Write(buffer, size); } void Sync(); - size_t StreamSize() const; + size_t GetSize() const; bool Ok() const { return m_file->IsOpened(); }