* Made Log call virtual. Fixes issue #40623

This commit is contained in:
Michaël Van Canneyt 2024-02-03 20:45:10 +01:00
parent d44cae14f5
commit 9c9497375e

View File

@ -87,7 +87,7 @@ Type
Function UnRegisterMessageFile : Boolean; virtual;
Procedure Pause;
Procedure Resume;
Procedure Log (EventType : TEventType; const Msg : String); {$ifndef fpc }Overload;{$endif}
Procedure Log (EventType : TEventType; const Msg : String); virtual; {$ifndef fpc }Overload;{$endif}
Procedure Log (EventType : TEventType; const Fmt : String; Args : Array of const); {$ifndef fpc }Overload;{$endif}
Procedure Log (const Msg : String); {$ifndef fpc }Overload;{$endif}
Procedure Log (const Fmt : String; Args : Array of const); {$ifndef fpc }Overload;{$endif}