Johann Glaser writes:
> Hi!
>
> How can I access an inherited inherited method which was overloaded?
>
AFAIK TThird inherits Create method not from TFirst, but from TSecond,
i.e. TThird.Create calls TSecond.Create, not TFirst.Create.
___
fpc-pascal mai
Hi!
How can I access an inherited inherited method which was overloaded?
== Example: ==
{$mode objfpc}{$H+}
Program TestInherited;
Uses Classes, SysUtils;
Type
TFirst = class
Constructor Create(A,B,C:Integer);
End;
TSecond = class(TFirst)
Constructor Create(A,B:Integer);