فهرست منبع

Free book objects when clearing collection

Bernardo Magri 4 ماه پیش
والد
کامیت
14699a09e1
1فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 8 0
      src/bookcollection.pas

+ 8 - 0
src/bookcollection.pas

@@ -35,7 +35,15 @@ implementation
 { TBookCollection }
 
 procedure TBookCollection.Clear;
+var
+  i : Integer;
+  book : TBook;
 begin
+  for i := mList.Count - 1 downto 0 do
+  begin
+    book := TBook(mList[i]);
+    book.Free;               // free cover controls and the book itself
+  end;
   mList.Clear;
 end;