mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 23:38:02 +02:00
Qt: fixed memleak in enumfontfamiliesex.
This commit is contained in:
parent
eb41784ad0
commit
c7bbb0b354
@ -1950,7 +1950,6 @@ begin
|
||||
if QtGetFontFamilies(FontList, lpLogFont^.lfPitchAndFamily,
|
||||
lpLogFont^.lfFaceName, CharsetToQtCharSet(lpLogFont^.lfCharSet)) > 0 then
|
||||
begin
|
||||
StylesList := QStringList_create();
|
||||
for i := 0 to FontList.Count - 1 do
|
||||
begin
|
||||
EnumLogFont.elfLogFont.lfFaceName := FontList[i];
|
||||
@ -1979,6 +1978,7 @@ begin
|
||||
finally
|
||||
FontList.free;
|
||||
QStringList_destroy(StylesList);
|
||||
QStringList_destroy(ScriptList);
|
||||
CharSetList.Free;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user