]> git.saurik.com Git - wxWidgets.git/commitdiff
remove extraneous semicolons
authorPaul Cornett <paulcor@bullseye.com>
Tue, 10 Oct 2006 04:49:22 +0000 (04:49 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Tue, 10 Oct 2006 04:49:22 +0000 (04:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/anidecod.cpp
src/generic/animateg.cpp

index 76d2f9c0ba8261e7b9c2cfd45123a60c05b3399f..e3b5ba4718755c0981ca4837323485dd1df082dc 100644 (file)
 
 #if wxUSE_STREAMS && wxUSE_GIF
 
+#include "wx/anidecod.h"
+
 #ifndef WX_PRECOMP
     #include "wx/palette.h"
 #endif
 
 #include <stdlib.h>
 #include <string.h>
-#include "wx/anidecod.h"
 
 // static
 wxCURHandler wxANIDecoder::sm_handler;
 
-
-
 //---------------------------------------------------------------------------
 // wxANIFrameInfo
 //---------------------------------------------------------------------------
@@ -43,13 +42,11 @@ public:
     int m_imageIndex;
 };
 
-#include <wx/arrimpl.cpp> // this is a magic incantation which must be done!
-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(wxImageArray)
 
+#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 = wxSize(m_images[0].GetWidth(), m_images[0].GetHeight());
 
-    return m_szAnimation!=wxDefaultSize;
+    return m_szAnimation != wxDefaultSize;
 }
 
 #endif // wxUSE_STREAMS && wxUSE_GIF
index 124f394071f3be406db10096cb2e97931887d275..3495d4a15f008bd2e4f3a6e1bdd9b802d07eabc0 100644 (file)
@@ -32,7 +32,7 @@
 #include "wx/anidecod.h"
 
 #include "wx/listimpl.cpp"
-WX_DEFINE_LIST(wxAnimationDecoderList);
+WX_DEFINE_LIST(wxAnimationDecoderList)
 
 wxAnimationDecoderList wxAnimation::sm_handlers;