]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/stream.h
Implement setFont on the iOS port of wxStaticText.
[wxWidgets.git] / interface / wx / stream.h
index 7bed3174ca369459bf2bd3627a56c2a5f38d595f..5eccd60e15bb5bd05b50998e96ebafeb06182f91 100644 (file)
@@ -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;
 };