X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8faef7ccbc4b4e192da06de7e1a2a7f1dff7ec91..586c455167ef67ac2920db45e48f8509b8be8d31:/src/common/imagpnm.cpp diff --git a/src/common/imagpnm.cpp b/src/common/imagpnm.cpp index 2b3e75f979..731220450b 100644 --- a/src/common/imagpnm.cpp +++ b/src/common/imagpnm.cpp @@ -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; } @@ -103,7 +108,10 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose *ptr++=(unsigned char)value; // B if ( !buf_stream ) { - if (verbose) wxLogError(_("PNM: File seems truncated.")); + if (verbose) + { + wxLogError(_("PNM: File seems truncated.")); + } return false; } } @@ -122,7 +130,10 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose if ( !buf_stream ) { - if (verbose) wxLogError(_("PNM: File seems truncated.")); + if (verbose) + { + wxLogError(_("PNM: File seems truncated.")); + } return false; } } @@ -141,7 +152,10 @@ bool wxPNMHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose *ptr++=value; // B if ( !buf_stream ) { - if (verbose) wxLogError(_("PNM: File seems truncated.")); + if (verbose) + { + wxLogError(_("PNM: File seems truncated.")); + } return false; } }