monkeyxu / dcef3

Automatically exported from code.google.com/p/dcef3
0 stars 0 forks source link

The function TCefListValueRef.New always returns nil #58

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The result of function not assigned

Original issue reported on code.google.com by alex.kar...@impet.com on 20 Nov 2014 at 7:32

GoogleCodeExporter commented 9 years ago
The bug in ceflib.pas:

class function TCefListValueRef.New: ICefListValue;
begin
  UnWrap(cef_list_value_create);
end;

should be

class function TCefListValueRef.New: ICefListValue;
begin
  Result := UnWrap(cef_list_value_create);
end;

Original comment by netedgej...@gmail.com on 6 Feb 2015 at 6:13

GoogleCodeExporter commented 9 years ago

Original comment by hgourv...@gmail.com on 27 Feb 2015 at 11:33