Re: [fpc-pascal] Publishing indexed property in descendant

2017-12-28 Thread Vojtěch Čihák
Done, https://bugs.freepascal.org/view.php?id=32896   V. __ Od: Michael Van Canneyt Komu: FPC-Pascal users discussions Datum: 28.12.2017 16:43 Předmět: Re: [fpc-pascal] Publishing indexed property in descendant On Thu, 28 Dec 2017

Re: [fpc-pascal] Publishing indexed property in descendant

2017-12-28 Thread Michael Van Canneyt
On Thu, 28 Dec 2017, Vojtěch Čihák wrote: Hi,   is this bug?    { TCompStreamPers }   TCompStreamPers = class(TCustomControl)   private     function GetItem(AIndex: Integer): TPersItem;     procedure SetItem(AIndex: Integer; AValue: TPersItem);   protected     FItems: TFPObjectList;   public