Hi, I'm trying to implement a method of an specialized class, but when I type ctrl+space the IDE shows "Error: Identifier not found: specialize". But I can compile this project without problems.

The definition of my class is this:

TActListStudies = class(specialize TBaseGAction<TDummy>)
public
  procedure Post; override;
end;


And the implementation:

procedure TActListStudies.Post;
begin
  // here CTRL+SPACE raises the error.
  Write('Your content here ...');
end;



--
Leonardo M. Ramé
http://leonardorame.blogspot.com

--
_______________________________________________
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to