From: Vadim Zeitlin Date: Wed, 27 Oct 2004 23:07:11 +0000 (+0000) Subject: we don't have to call png_set_error_fn() any more after last commit X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fd359806233566c07d5191d5d1038f30799cffb3 we don't have to call png_set_error_fn() any more after last commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/imagpng.cpp b/src/common/imagpng.cpp index b2925a2a8c..deac2bc1c9 100644 --- a/src/common/imagpng.cpp +++ b/src/common/imagpng.cpp @@ -529,8 +529,6 @@ wxPNGHandler::LoadFile(wxImage *image, if (!png_ptr) goto error; - png_set_error_fn(png_ptr, (png_voidp)NULL, wx_png_error, wx_png_warning); - // NB: please see the comment near wxPNGInfoStruct declaration for // explanation why this line is mandatory png_set_read_fn( png_ptr, &wxinfo, wx_PNG_stream_reader); @@ -645,8 +643,6 @@ bool wxPNGHandler::SaveFile( wxImage *image, wxOutputStream& stream, bool verbos return false; } - png_set_error_fn(png_ptr, (png_voidp)NULL, wx_png_error, wx_png_warning); - png_infop info_ptr = png_create_info_struct(png_ptr); if (info_ptr == NULL) {