Menu

Bug in UITableViewItems.pas

2013-08-15
2013-08-15
  • sir_wally_lewis

    sir_wally_lewis - 2013-08-15

    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.

     
  • Tyson Stephen

    Tyson Stephen - 2013-08-15

    Hi Robert,

    You should create a ticket so that the bug can be properly addressed.

     
    • sir_wally_lewis

      sir_wally_lewis - 2013-08-15

      And how to do that?

       
  • sir_wally_lewis

    sir_wally_lewis - 2013-08-15

    Done, never saw that section before.

     
  • Babak Yaghoobi

    Babak Yaghoobi - 2013-08-15

    Hi, sir_wally_lewis

    Fixed

    Thanks for feedback

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.