cocoa: update deallocation of read-only combobox

git-svn-id: trunk@59249 -
This commit is contained in:
dmitry 2018-10-04 22:21:57 +00:00
parent 7c1bbdaa10
commit 003ad96f6d

View File

@ -1327,13 +1327,7 @@ end;
procedure TCocoaReadOnlyComboBox.dealloc;
begin
if Assigned(list) then
begin
list.Free;
list:=nil;
end;
if resultNS <> nil then
resultNS.release;
if resultNS <> nil then resultNS.release;
inherited dealloc;
end;