tvplanit: Refactor ical/vcard import (property Skip --> Checked)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8398 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2022-08-19 14:06:54 +00:00
parent 259d689c42
commit a430be7bcf
6 changed files with 15 additions and 13 deletions

View File

@ -61,7 +61,7 @@ begin
exit;
card := TVpVCard(FItems[ARow - Grid.FixedRows]);
if card <> nil then
card.Skip := not AChecked;
card.Checked := AChecked;
end;
function TVpImportPreviewVCardForm.GetCellText(ACol, ARow: Integer): String;
@ -135,7 +135,7 @@ begin
exit;
card := TVpVCard(FItems[ARow - Grid.FixedRows]);
if (card <> nil) then
Result := not card.Skip;
Result := card.Checked;
end;
procedure TVpImportPreviewVCardForm.PrepareItems;