mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-11 12:00:37 +01:00
fixed memleak
git-svn-id: trunk@8294 -
This commit is contained in:
parent
c8ec0e9c0a
commit
a0c6abbb8d
@ -7557,6 +7557,8 @@ begin
|
|||||||
if FReadOnly<>nil then Dispose(FReadOnly);
|
if FReadOnly<>nil then Dispose(FReadOnly);
|
||||||
if FWidth<>nil then Dispose(FWidth);
|
if FWidth<>nil then Dispose(FWidth);
|
||||||
if FLayout<>nil then Dispose(FLayout);
|
if FLayout<>nil then Dispose(FLayout);
|
||||||
|
if FMaxSize<>nil then Dispose(FMaxSize);
|
||||||
|
if FMinSize<>nil then Dispose(FMinSize);
|
||||||
FreeThenNil(FPickList);
|
FreeThenNil(FPickList);
|
||||||
FreeThenNil(FFont);
|
FreeThenNil(FFont);
|
||||||
FreeThenNil(FTitle);
|
FreeThenNil(FTitle);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user