]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/animateg.cpp
added mouse wheel support (patch 1696082)
[wxWidgets.git] / src / generic / animateg.cpp
index c957313fad8d22ce1e7f892b36d1160e4d647157..a2bb8403494c9b5b154a0c6659743cbfcad7b272 100644 (file)
@@ -147,10 +147,6 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
 
     handler = FindHandler(type);
 
-    // do a copy of the handler from the static list which we will own
-    // as our reference data
-    m_refData = handler->Clone();
-
     if (handler == NULL)
     {
         wxLogWarning( _("No animation handler for type %ld defined."), type );
@@ -158,6 +154,11 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
         return false;
     }
 
+
+    // do a copy of the handler from the static list which we will own
+    // as our reference data
+    m_refData = handler->Clone();
+
     if (stream.IsSeekable() && !M_ANIMDATA->CanRead(stream))
     {
         wxLogError(_("Animation file is not of type %ld."), type);