]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/zstream.h
fixed VC++ size_t -> int conversion warning
[wxWidgets.git] / include / wx / zstream.h
index f5ec6a5906ccac821d72734469bffa181de58f89..7086472a219794fd56959e29d42f38e45f86e642 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     11/07/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Guilhem Lavaux
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 #ifndef _WX_WXZSTREAM_H__
 #define _WX_WXZSTREAM_H__
@@ -52,13 +52,13 @@ class WXDLLIMPEXP_BASE wxZlibInputStream: public wxFilterInputStream {
 
  protected:
   size_t OnSysRead(void *buffer, size_t size);
-  off_t OnSysTell() const { return m_pos; }
+  wxFileOffset OnSysTell() const { return m_pos; }
 
  protected:
   size_t m_z_size;
   unsigned char *m_z_buffer;
   struct z_stream_s *m_inflate;
-  off_t m_pos;
+  wxFileOffset m_pos;
 #if WXWIN_COMPATIBILITY_2_4
   bool m_24compatibilty;
 #endif
@@ -78,7 +78,7 @@ class WXDLLIMPEXP_BASE wxZlibOutputStream: public wxFilterOutputStream {
 
  protected:
   size_t OnSysWrite(const void *buffer, size_t size);
-  off_t OnSysTell() const { return m_pos; }
+  wxFileOffset OnSysTell() const { return m_pos; }
 
   virtual void DoFlush(bool final);
 
@@ -86,7 +86,7 @@ class WXDLLIMPEXP_BASE wxZlibOutputStream: public wxFilterOutputStream {
   size_t m_z_size;
   unsigned char *m_z_buffer;
   struct z_stream_s *m_deflate;
-  off_t m_pos;
+  wxFileOffset m_pos;
 
   DECLARE_NO_COPY_CLASS(wxZlibOutputStream)
 };