Page 1 of 1

[bug_fixed] Activate again FPC support

Posted: 12.03.2008, 09:36
by wahono
In unit ZAbstractRODataset.pas, class TZAbstractRODataset, there are two property with conditional compile to FPC is without these property :

{$IFNDEF FPC}
property BeforeRefresh;
property AfterRefresh;
{$ENDIF}

But these property is exists in FPC, I think this conditional should be removed.

wahono

Posted: 12.03.2008, 11:30
by mdaems
Can you tell me since wht fpc version these properties exist? Most probably the condition was initially added just to enable FPC. So tell me what version they added this to FPC Datasets and I'll change the conditional. Is there an easy way to check this? In SVN I see it was added to trunk on 13/1/2006 (Rev 2281). How can I know what FPC version it got in first?

Mark

Edit : found it by checking SVN tag versions... It was 2.0.4

Posted: 12.03.2008, 12:10
by mdaems
Done. SVN Rev. 347 (Testing Branch)

Mark

Posted: 13.03.2008, 04:06
by wahono
In FPC 2.2.0 these property is exists. Thanks.