Hi,
our company is using the DPF components and they are really good. However my colleague has found a bug in UITableViewItems.pas
function TTableItemCollection.Insert( Index: Integer ): TTableItem; begin Result := nil; end;
should read:
function TTableItemCollection.Insert( Index: Integer ): TTableItem; begin Result := inherited Insert(Index) as TTableItem; end;
Are we right?
If so is there a better way of reporting a bug?
Kind Regards,
Robert.
Hi Robert,
You should create a ticket so that the bug can be properly addressed.
And how to do that?
Goto the Ticket section and create a new ticket.
https://sourceforge.net/p/dpfdelphiios/tickets/?source=navbar
Thanks
Done, never saw that section before.
Hi, sir_wally_lewis
Fixed
Thanks for feedback
Log in to post a comment.
Hi,
our company is using the DPF components and they are really good.
However my colleague has found a bug in UITableViewItems.pas
function TTableItemCollection.Insert( Index: Integer ): TTableItem;
begin
Result := nil;
end;
should read:
function TTableItemCollection.Insert( Index: Integer ): TTableItem;
begin
Result := inherited Insert(Index) as TTableItem;
end;
Are we right?
If so is there a better way of reporting a bug?
Kind Regards,
Robert.
Hi Robert,
You should create a ticket so that the bug can be properly addressed.
And how to do that?
Goto the Ticket section and create a new ticket.
https://sourceforge.net/p/dpfdelphiios/tickets/?source=navbar
Thanks
Done, never saw that section before.
Hi, sir_wally_lewis
Fixed
Thanks for feedback