Removed not used function QueryInterface function.

This commit is contained in:
Henrique Gottardi Werlang 2024-08-07 08:21:26 -03:00 committed by Michael Van Canneyt
parent 1c7beb5263
commit 596ed58822

View File

@ -515,8 +515,6 @@ type
destructor Destroy; override;
function QueryInterface(const iid: TGuid; out obj): Integer; override;
property OnInvoke: TVirtualInterfaceInvokeEvent read FOnInvoke write FOnInvoke;
property OnInvokeJS: TVirtualInterfaceInvokeEventJS read FOnInvokeJS write FOnInvokeJS;
end;
@ -2260,11 +2258,6 @@ begin
inherited;
end;
function TVirtualInterface.QueryInterface(const iid: TGuid; out obj): Integer;
begin
Result := inherited QueryInterface(iid, obj);
end;
function TVirtualInterface.Invoke(const MethodName: String; const Args: TJSFunctionArguments): JSValue;
var
Method: TRttiMethod;