Overload to allow a new constructor in the derived class, but allowing to call the base constructor.

This commit is contained in:
Henrique Gottardi Werlang 2024-02-29 11:11:50 -03:00
parent 61bce04d28
commit 6940c94333

View File

@ -123,7 +123,7 @@ type
class var
LogMessageOnCreate : Boolean;
Public
constructor Create(const Msg: String); reintroduce;
constructor Create(const Msg: String); reintroduce; overload;
constructor CreateFmt(const Msg: string; const Args: array of const);
constructor CreateHelp(const Msg: String; AHelpContext: Integer);
constructor CreateFmtHelp(const Msg: string; const Args: array of const; AHelpContext: Integer);