From e0d6926bee18094026c67bb786662955b252063e Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Tue, 23 Aug 2022 11:26:53 +0000 Subject: [PATCH] tvplanit: Remove variable wvEventList from TVpWeekView, not used. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8416 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/tvplanit/source/vpweekview.pas | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/tvplanit/source/vpweekview.pas b/components/tvplanit/source/vpweekview.pas index da2e7e0eb..c674f53c8 100644 --- a/components/tvplanit/source/vpweekview.pas +++ b/components/tvplanit/source/vpweekview.pas @@ -202,7 +202,6 @@ type { internal variables } wvActiveEventRec: TRect; wvEventArray: TVpEventArray; - wvEventList: TList; wvHeaderHeight: Integer; wvRowHeight: Integer; wvStartDate: TDateTime; @@ -553,7 +552,6 @@ begin FEventFont.Assign(Font); FShowEventTime := true; wvInLinkHandler := false; - wvEventList := TList.Create; wvClickTimer := TTimer.Create(self); wvHotPoint := Point(0, 0); wvDragging := false; @@ -618,7 +616,6 @@ begin FHeadAttr.Free; wvClickTimer.Free; FEventFont.Free; - wvEventList.Free; FDefaultPopup.Free; inherited; end;