You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-22 22:17:48 +02:00
Fixed incorrect type definitions
Fixed TCefCustomStringList.GetHandle return value type
This commit is contained in:
@ -27,7 +27,7 @@ type
|
||||
protected
|
||||
FHandle : TCefStringList;
|
||||
|
||||
function GetHandle: TCefStringMap; virtual;
|
||||
function GetHandle: TCefStringList; virtual;
|
||||
/// <summary>
|
||||
/// Return the number of elements in the string list.
|
||||
/// </summary>
|
||||
@ -107,7 +107,7 @@ begin
|
||||
if (FHandle <> nil) then cef_string_list_clear(FHandle);
|
||||
end;
|
||||
|
||||
function TCefCustomStringList.GetHandle: TCefStringMap;
|
||||
function TCefCustomStringList.GetHandle: TCefStringList;
|
||||
begin
|
||||
Result := FHandle;
|
||||
end;
|
||||
|
Reference in New Issue
Block a user