]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imaggif.cpp
1. wxFontMapper almost finished
[wxWidgets.git] / src / common / imaggif.cpp
index d2d5ef4bd9e42542a9808b9b8590ab45b9792593..b15fff887ec0a9dea92fc30f59dadbaa9a9b2c93 100644 (file)
@@ -13,7 +13,7 @@
 */
 
 // For compilers that support precompilation, includes "wx.h".
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
 #  pragma hdrstop
@@ -49,7 +49,7 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose
     decod = new wxGIFDecoder(&stream, TRUE);
 
     if ((error = decod->ReadGIF()) != E_OK)
-    {   
+    {
         if (verbose)
         {
             switch (error)
@@ -79,7 +79,7 @@ bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image),
     return FALSE;
 }
 
-bool wxGIFHandler::CanRead( wxInputStream& stream )
+bool wxGIFHandler::DoCanRead( wxInputStream& stream )
 {
     wxGIFDecoder *decod;
     bool ok;