You've already forked lazarus-ccr
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user