Explorar el Código

- removed writeln() in JPEGError() to avoid triggering an (additional)
error in Win32 GUI programs

git-svn-id: trunk@12899 -

Jonas Maebe hace 16 años
padre
commit
4953b23666
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      packages/fcl-image/src/fpreadjpeg.pas

+ 0 - 1
packages/fcl-image/src/fpreadjpeg.pas

@@ -105,7 +105,6 @@ end;
 procedure JPEGError(CurInfo: j_common_ptr);
 begin
   if CurInfo=nil then exit;
-  writeln('JPEGError ',CurInfo^.err^.msg_code,' ');
   raise Exception.CreateFmt('JPEG error',[CurInfo^.err^.msg_code]);
 end;