]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/image.h
added wxCHECK_GCC_VERSION() macro
[wxWidgets.git] / include / wx / image.h
index 6df67faa3c9e11ebdc649dfce081b66525fabc62..7718cacdeb92ac5c93c9b2ef31fd144706dc0bf9 100644 (file)
@@ -53,7 +53,7 @@ public:
 
     virtual int GetImageCount( wxInputStream& stream );
 
-    bool CanRead( wxInputStream& stream ) { return DoCanRead(stream); }
+    bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); }
     bool CanRead( const wxString& name );
 #endif // wxUSE_STREAMS
 
@@ -69,6 +69,9 @@ public:
 protected:
 #if wxUSE_STREAMS
     virtual bool DoCanRead( wxInputStream& stream ) = 0;
+
+    // save the stream position, call DoCanRead() and restore the position
+    bool CallDoCanRead(wxInputStream& stream);
 #endif // wxUSE_STREAMS
 
     wxString  m_name;