Changeset 278 for trunk/Forms
- Timestamp:
- Feb 14, 2019, 10:25:13 PM (6 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormGameSystem.pas
r277 r278 98 98 procedure TFormGameSystem.FormDestroy(Sender: TObject); 99 99 begin 100 FormUnitKinds.Free; 100 GameSystem := nil; 101 FreeAndNil(FormUnitKinds); 101 102 end; 102 103 -
trunk/Forms/UFormGameSystems.lfm
r275 r278 10 10 OnClose = FormClose 11 11 OnCreate = FormCreate 12 OnDestroy = FormDestroy 12 13 OnShow = FormShow 13 14 LCLVersion = '1.8.4.0' -
trunk/Forms/UFormGameSystems.pas
r277 r278 38 38 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 39 39 procedure FormCreate(Sender: TObject); 40 procedure FormDestroy(Sender: TObject); 40 41 procedure FormShow(Sender: TObject); 41 42 procedure ListView1Data(Sender: TObject; Item: TListItem); … … 159 160 end; 160 161 162 procedure TFormGameSystems.FormDestroy(Sender: TObject); 163 begin 164 GameSystems := nil; 165 end; 166 161 167 procedure TFormGameSystems.FormShow(Sender: TObject); 162 168 begin
Note:
See TracChangeset
for help on using the changeset viewer.