X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc437b9654244bfb8b638f98252aa34145323b9c..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/stream.h diff --git a/interface/wx/stream.h b/interface/wx/stream.h index 7bed3174ca..5eccd60e15 100644 --- a/interface/wx/stream.h +++ b/interface/wx/stream.h @@ -2,7 +2,6 @@ // Name: stream.h // Purpose: interface of wxStreamBase and its derived classes // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -753,9 +752,11 @@ public: virtual ~wxCountingOutputStream(); /** - Returns the current size of the stream. + Returns the current length of the stream. + + This is the amount of data written to the stream so far, in bytes. */ - size_t GetSize() const; + virtual wxFileOffset GetLength() const; };