mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
Fixed parameter checking in UpdateStringListPref.
This commit is contained in:
parent
17a3b8e61c
commit
eaca9d8b65
@ -2548,7 +2548,7 @@ begin
|
||||
TempSL := nil;
|
||||
|
||||
try
|
||||
if (length(name) > 0) and (length(aValue) > 0) then
|
||||
if (length(aName) > 0) and (length(aValue) > 0) then
|
||||
begin
|
||||
TempSL := TStringList.Create;
|
||||
TempSL.CommaText := aValue;
|
||||
|
Loading…
Reference in New Issue
Block a user