X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/163b3ad72c6729733881e74608af586a99f43726..704ceca8d2cd8da51a5cc22f8c51fd61c762dbf5:/include/wx/animdecod.h?ds=inline

diff --git a/include/wx/animdecod.h b/include/wx/animdecod.h
index ee0e21ab48..5379c366a5 100644
--- a/include/wx/animdecod.h
+++ b/include/wx/animdecod.h
@@ -84,16 +84,13 @@ enum wxAnimationType
 // wxAnimationDecoder class
 // --------------------------------------------------------------------------
 
-class WXDLLIMPEXP_ADV wxAnimationDecoder : public wxObjectRefData
+class WXDLLIMPEXP_CORE wxAnimationDecoder : public wxObjectRefData
 {
 public:
     wxAnimationDecoder()
     {
-        m_background = wxNullColour;
         m_nFrames = 0;
     }
-    virtual ~wxAnimationDecoder() { }
-
 
     virtual bool Load( wxInputStream& stream ) = 0;
     virtual bool CanRead( wxInputStream& stream ) const = 0;
@@ -140,7 +137,7 @@ protected:
     wxColour m_background;
 };
 
-
 #endif  // wxUSE_STREAMS
+
 #endif  // _WX_ANIMDECOD_H