]> git.saurik.com Git - wxWidgets.git/commitdiff
Use wxUSE_* flags for new animation code.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 10 Oct 2006 08:16:34 +0000 (08:16 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 10 Oct 2006 08:16:34 +0000 (08:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41866 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/anidecod.h
src/common/anidecod.cpp
src/generic/animateg.cpp

index 4fe25b6da85c89231fc300574c88db0fc2f93bd0..4375a24f70bacbcb3ba56867bff30708d6fe7bac 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/defs.h"
 
-#if wxUSE_STREAMS && wxUSE_GIF
+#if wxUSE_STREAMS && wxUSE_ICO_CUR
 
 #include "wx/stream.h"
 #include "wx/image.h"
@@ -72,6 +72,6 @@ private:
 };
 
 
-#endif  // wxUSE_STREAM && wxUSE_GIF
-#endif  // _WX_ANIDECOD_H
+#endif  // wxUSE_STREAM && wxUSE_ICO_CUR
 
+#endif  // _WX_ANIDECOD_H
index e3b5ba4718755c0981ca4837323485dd1df082dc..7f90c8fdeb2d6d1a8607bea8751d9ff8afb8ea19 100644 (file)
@@ -14,7 +14,7 @@
     #pragma hdrstop
 #endif
 
-#if wxUSE_STREAMS && wxUSE_GIF
+#if wxUSE_STREAMS && wxUSE_ICO_CUR
 
 #include "wx/anidecod.h"
 
@@ -330,4 +330,4 @@ bool wxANIDecoder::Load( wxInputStream& stream )
     return m_szAnimation != wxDefaultSize;
 }
 
-#endif // wxUSE_STREAMS && wxUSE_GIF
+#endif // wxUSE_STREAMS && wxUSE_ICO_CUR
index 3495d4a15f008bd2e4f3a6e1bdd9b802d07eabc0..3a84197ddd8359935612f495a5e6a4a5ade527cd 100644 (file)
@@ -209,8 +209,12 @@ const wxAnimationDecoder *wxAnimation::FindHandler( wxAnimationType animType )
 
 void wxAnimation::InitStandardHandlers()
 {
+#if wxUSE_GIF
     AddHandler(new wxGIFDecoder);
+#endif // wxUSE_GIF
+#if wxUSE_ICO_CUR
     AddHandler(new wxANIDecoder);
+#endif // wxUSE_ICO_CUR
 }
 
 void wxAnimation::CleanUpHandlers()