From 7776d70e7fa18301cfee34b5b60f127ba0781580 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 15 Dec 2007 23:16:56 +0000 Subject: [PATCH] undid incorrect replacement of WXDLLEXPORT with WXDLLIMPEXP_ADV, wxAnimationDecoder is a core class (because it's the base class for wxANIDecoder which is itself in core because it's used by wxBitmap); remove unnecessary dtor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50733 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/animdecod.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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