remove extraneous semicolons
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -16,19 +16,18 @@
|
|||||||
|
|
||||||
#if wxUSE_STREAMS && wxUSE_GIF
|
#if wxUSE_STREAMS && wxUSE_GIF
|
||||||
|
|
||||||
|
#include "wx/anidecod.h"
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include "wx/palette.h"
|
#include "wx/palette.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "wx/anidecod.h"
|
|
||||||
|
|
||||||
// static
|
// static
|
||||||
wxCURHandler wxANIDecoder::sm_handler;
|
wxCURHandler wxANIDecoder::sm_handler;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// wxANIFrameInfo
|
// wxANIFrameInfo
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -43,13 +42,11 @@ public:
|
|||||||
int m_imageIndex;
|
int m_imageIndex;
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <wx/arrimpl.cpp> // this is a magic incantation which must be done!
|
#include "wx/arrimpl.cpp" // this is a magic incantation which must be done!
|
||||||
WX_DEFINE_OBJARRAY(wxImageArray);
|
WX_DEFINE_OBJARRAY(wxImageArray)
|
||||||
|
|
||||||
#include <wx/arrimpl.cpp> // this is a magic incantation which must be done!
|
|
||||||
WX_DEFINE_OBJARRAY(wxANIFrameInfoArray);
|
|
||||||
|
|
||||||
|
|
||||||
|
#include "wx/arrimpl.cpp" // this is a magic incantation which must be done!
|
||||||
|
WX_DEFINE_OBJARRAY(wxANIFrameInfoArray)
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -330,7 +327,7 @@ bool wxANIDecoder::Load( wxInputStream& stream )
|
|||||||
m_szAnimation.GetHeight() == 0)
|
m_szAnimation.GetHeight() == 0)
|
||||||
m_szAnimation = wxSize(m_images[0].GetWidth(), m_images[0].GetHeight());
|
m_szAnimation = wxSize(m_images[0].GetWidth(), m_images[0].GetHeight());
|
||||||
|
|
||||||
return m_szAnimation!=wxDefaultSize;
|
return m_szAnimation != wxDefaultSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // wxUSE_STREAMS && wxUSE_GIF
|
#endif // wxUSE_STREAMS && wxUSE_GIF
|
||||||
|
@@ -32,7 +32,7 @@
|
|||||||
#include "wx/anidecod.h"
|
#include "wx/anidecod.h"
|
||||||
|
|
||||||
#include "wx/listimpl.cpp"
|
#include "wx/listimpl.cpp"
|
||||||
WX_DEFINE_LIST(wxAnimationDecoderList);
|
WX_DEFINE_LIST(wxAnimationDecoderList)
|
||||||
|
|
||||||
wxAnimationDecoderList wxAnimation::sm_handlers;
|
wxAnimationDecoderList wxAnimation::sm_handlers;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user