X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88a7a4e10ed18f81a576dcd866cfbf02bf404c00..94803e4ec8d61d24ebf9b1e483776d17e55a7ec5:/src/common/imagpnm.cpp diff --git a/src/common/imagpnm.cpp b/src/common/imagpnm.cpp index 15b611ee64..731220450b 100644 --- a/src/common/imagpnm.cpp +++ b/src/common/imagpnm.cpp @@ -20,9 +20,9 @@ #ifndef WX_PRECOMP #include "wx/intl.h" + #include "wx/log.h" #endif -#include "wx/log.h" #include "wx/txtstrm.h" //----------------------------------------------------------------------------- @@ -69,7 +69,10 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose case wxT('5'): // RAW Grey case wxT('6'): break; default: - if (verbose) wxLogError(_("PNM: File format is not recognized.")); + if (verbose) + { + wxLogError(_("PNM: File format is not recognized.")); + } return false; } @@ -85,7 +88,9 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose if (!ptr) { if (verbose) + { wxLogError( _("PNM: Couldn't allocate memory.") ); + } return false; } @@ -96,12 +101,17 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose for (wxUint32 i=0; iSetMask( false ); @@ -166,6 +194,7 @@ bool wxPNMHandler::DoCanRead( wxInputStream& stream ) { Skip_Comment(stream); + // it's ok to modify the stream position here if ( stream.GetC() == 'P' ) { switch ( stream.GetC() ) @@ -184,4 +213,4 @@ bool wxPNMHandler::DoCanRead( wxInputStream& stream ) #endif // wxUSE_STREAMS -#endif // wxUSE_PNM +#endif // wxUSE_IMAGE && wxUSE_PNM