Hi guys,

I just updated my lazarus linux box at svn rev19689.

Make now gives me this error:

Compiling graphics.pp
canvas.inc(88,24) Error: identifier idents no member "SetClipping"
graphics.pp(2489) Fatal: There were 1 errors compiling module, stopping
Fatal: Compilation aborted
make[1]: *** [alllclunits.ppu] Error 1
make[1]: Leaving directory `/home/antonio/lazarus/lcl'
make: *** [lcl] Error 2

I tried to comment out the statement that that follows because it seems
SetClipping is not present into ancestor TFPCustomCanvas. It seems to
compile now but I don't know if this or if it is better to analyze the ifdef
for override - reintroduce into TCanvas.SetClipping interface method class.

procedure TCanvas.SetClipping(const : boolean);
begin
//  inherited SetClipping(AValue);
  if AValue then
    SetClipRect(inherited GetClipRect)
  else
    SelectClipRGN(Handle, 0);
end;

Thank you
Antonio



-- 
Antonio Sanguigni alias slapshot
----------------------------------------------------------------------
GioveLUG (Linux User Group) - http://www.giovelug.org
Edupup (Educational distro) - http://www.pieroni.biz/edupup
_______________________________________________
Lazarus mailing list
Lazarus@lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to