]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/imaggif.cpp
Optimized for performance.
[wxWidgets.git] / src / common / imaggif.cpp
index d2d5ef4bd9e42542a9808b9b8590ab45b9792593..eec1778dcbb5380df81ddad94a34a1f65ec59a98 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
@@ -29,6 +29,7 @@
 #include "wx/gifdecod.h"
 #include "wx/wfstream.h"
 #include "wx/log.h"
+#include "wx/intl.h"
 
 #if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler,wxImageHandler)
@@ -40,7 +41,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxGIFHandler,wxImageHandler)
 
 #if wxUSE_STREAMS
 
-bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose )
+bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose, int WXUNUSED(index) )
 {
     wxGIFDecoder *decod;
     int error;
@@ -49,14 +50,14 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose
     decod = new wxGIFDecoder(&stream, TRUE);
 
     if ((error = decod->ReadGIF()) != E_OK)
-    {   
+    {
         if (verbose)
         {
             switch (error)
             {
-                case E_FORMATO: wxLogError(wxT("wxGIFHandler: error in image format")); break;
-                case E_MEMORIA: wxLogError(wxT("wxGIFHandler: couldn't allocate memory")); break;
-                default:        wxLogError(wxT("wxGIFHandler: unknown error !!!"));
+                case E_FORMATO: wxLogError(_("GIF: Error in image format.")); break;
+                case E_MEMORIA: wxLogError(_("GIF: Couldn't allocate memory.")); break;
+                default:        wxLogError(_("GIF: Unknown error."));
             }
         }
         delete decod;
@@ -79,7 +80,7 @@ bool wxGIFHandler::SaveFile( wxImage * WXUNUSED(image),
     return FALSE;
 }
 
-bool wxGIFHandler::CanRead( wxInputStream& stream )
+bool wxGIFHandler::DoCanRead( wxInputStream& stream )
 {
     wxGIFDecoder *decod;
     bool ok;