The function TCefListValueRef.New always returns nil
Closed this issue · 2 comments
GoogleCodeExporter commented
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
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
- Added labels: ****
- Removed labels: ****
GoogleCodeExporter commented
Original comment by hgourv...@gmail.com
on 27 Feb 2015 at 11:33
- Changed state: Fixed
- Added labels: ****
- Removed labels: ****