Catch more types of potential exceptions in image preview box. See http://www.heidisql.com/forum.php?t=8980

This commit is contained in:
Ansgar Becker
2011-08-26 06:24:19 +00:00
parent 94c1ecc81a
commit 12b158ba1c

View File

@ -2492,8 +2492,9 @@ begin
IntToStr(Graphic.Width)+' x '+IntToStr(Graphic.Height)+' pixels, 100%, '+
FormatByteNumber(StrLen);
spltPreview.OnMoved(spltPreview);
except on E:EInvalidGraphic do
lblPreviewTitle.Caption := ImgType+': ' + E.Message;
except
on E:Exception do
lblPreviewTitle.Caption := ImgType+': ' + E.Message + ' ('+E.ClassName+')';
end;
FreeAndNil(ContentStream);
end else