You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-12 22:07:39 +02:00
Complete inherited commands for backward compatibility
This commit is contained in:
@ -173,15 +173,17 @@ end;
|
||||
constructor TCefRTTIExtension.Create(const value: TValue; SyncMainThread: Boolean);
|
||||
begin
|
||||
inherited Create;
|
||||
FCtx := TRttiContext.Create;
|
||||
|
||||
FCtx := TRttiContext.Create;
|
||||
FSyncMainThread := SyncMainThread;
|
||||
FValue := value;
|
||||
FValue := value;
|
||||
end;
|
||||
|
||||
destructor TCefRTTIExtension.Destroy;
|
||||
begin
|
||||
FCtx.Free;
|
||||
inherited;
|
||||
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
function TCefRTTIExtension.GetValue(pi: PTypeInfo; const v: ICefv8Value; var ret: TValue): Boolean;
|
||||
|
Reference in New Issue
Block a user