X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc437b9654244bfb8b638f98252aa34145323b9c..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/stream.h?ds=sidebyside 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; };