]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/animdecod.h
Override MSWTranslateMessage for wxActiveXContainer. Calling IOleInPlaceActiveObject...
[wxWidgets.git] / include / wx / animdecod.h
index 8e7b2a0a0016fb06eae2d4a725fb04288377fce1..876c802520099430dab4c3ab33cb79aec36fb2cd 100644 (file)
@@ -19,7 +19,6 @@
 #include "wx/log.h"
 #include "wx/stream.h"
 
-class WXDLLIMPEXP_FWD_BASE wxInputStream;
 class WXDLLIMPEXP_FWD_CORE wxImage;
 
 /*
@@ -95,11 +94,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
 
@@ -109,7 +108,7 @@ public:
         // restore the old position to be able to test other formats and so on
         if ( stream.SeekI(posOld) == wxInvalidOffset )
         {
-            wxLogDebug(_T("Failed to rewind the stream in wxAnimationDecoder!"));
+            wxLogDebug(wxT("Failed to rewind the stream in wxAnimationDecoder!"));
 
             // reading would fail anyhow as we're not at the right position
             return false;
@@ -157,7 +156,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;