X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/995612e2abc1131458863ed1d3e55206df7c33de..41b1047d910c3aba988b5b619ba885b7ac89cf20:/src/common/imaggif.cpp diff --git a/src/common/imaggif.cpp b/src/common/imaggif.cpp index 94f404a507..76d8c72594 100644 --- a/src/common/imaggif.cpp +++ b/src/common/imaggif.cpp @@ -13,7 +13,7 @@ */ // For compilers that support precompilation, includes "wx.h". -#include +#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; @@ -48,15 +49,15 @@ bool wxGIFHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose decod = new wxGIFDecoder(&stream, TRUE); - if ((error = decod->ReadGIF()) != E_OK) + if ((error = decod->ReadGIF()) != wxGIF_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 wxGIF_INVFORMAT: wxLogError(_("wxGIFHandler: error in GIF image format")); break; + case wxGIF_MEMERR: wxLogError(_("wxGIFHandler: couldn't allocate enough memory")); break; + default: wxLogError(_("wxGIFHandler: unknown error !!!")); } } delete decod;