Access violation in DrawValue
Status: Beta
Brought to you by:
jedi_mbe
Version 1.13. Access violation occurs in procedure
TJvCustomInspectorItem.DrawValue when
running the default example application. Fixed by
adding 'if assigned' test, don't know if it breaks anything
else (need some unit tests),
procedure TJvCustomInspectorItem.DrawValue(const
ACanvas: TCanvas);
var
S: string;
ARect: TRect;
SafeColor: TColor;
begin
if Assigned(Data) then
begin
.. do rest of procedure..
end;
end;