FIX: Correct a little thing in the order of TStringList creation in a try/finally block regarding TC toolbar import. Sorry.

This commit is contained in:
Denis Bisson 2017-05-28 15:29:50 +00:00
commit 6f8efe714d

View file

@ -1332,8 +1332,8 @@ var
begin
TCToolbarFilenameList := TStringList.Create;
try
DCListOfParameters := TStringList.Create;
try
DCListOfParameters := TStringList.Create;
RecursiveIncorporateTCBarfile(Barfilename, UpperToolItem, Toolbar, WhereToImport);
finally
DCListOfParameters.Free;