]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/animdecod.h
Add demonstration of a few more wxRenderer methods.
[wxWidgets.git] / include / wx / animdecod.h
index 1c6cb20d1fe8c1f3c1a6163c1ff1a686f4ee066f..acea85d0ec1399c3a28ca7887c517d2fa913f1b2 100644 (file)
@@ -95,11 +95,11 @@ public:
     }
 
     virtual bool Load( wxInputStream& stream ) = 0;
-    
+
     bool CanRead( wxInputStream& stream ) const
     {
         // NOTE: this code is the same of wxImageHandler::CallDoCanRead
-        
+
         if ( !stream.IsSeekable() )
             return false;        // can't test unseekable stream
 
@@ -157,7 +157,7 @@ protected:
     // this function should modify the stream current position without taking care
     // of restoring it since CanRead() will do it.
     virtual bool DoCanRead(wxInputStream& stream) const = 0;
-    
+
     wxSize m_szAnimation;
     unsigned int m_nFrames;