2011/1/2 ik <[email protected]>: > I'm trying to build Lazarus 0.9.31 r23597:28822M FPC 2.4.2 x86_64-linux-gtk > 2 > and I have problem at this code (/synunihighlighter/synunidesigner.pas): > > {$IFDEF SYN_LAZARUS} > PageControl.ShowTabs:=false; > {$ENDIF} > > It looks like that ShowTabs does not exists for the TNotebook component for > some reason.
If you have something like: PageControl: TNotebook; It is pretty obvious that the code is broken. It should be: PageControl: TPageControl; I fixed TNotebook, so obviously any code which depended on the old wrong behavior is broken. -- Felipe Monteiro de Carvalho -- _______________________________________________ Lazarus mailing list [email protected] http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus
