X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cc1b761a57239ab2e165e4d9757c070fa16d6cd3..bbb0ff36dbb57461c3086c6e729aa3acf7a559ec:/src/common/imagpcx.cpp diff --git a/src/common/imagpcx.cpp b/src/common/imagpcx.cpp index 05f1d66a5e..09a4612cbf 100644 --- a/src/common/imagpcx.cpp +++ b/src/common/imagpcx.cpp @@ -439,7 +439,9 @@ bool wxPCXHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose if (!CanRead(stream)) { if (verbose) + { wxLogError(_("PCX: this is not a PCX file.")); + } return false; } @@ -487,7 +489,7 @@ bool wxPCXHandler::SaveFile( wxImage *image, wxOutputStream& stream, bool verbos bool wxPCXHandler::DoCanRead( wxInputStream& stream ) { - unsigned char c = stream.GetC(); + unsigned char c = stream.GetC(); // it's ok to modify the stream position here if ( !stream ) return false;