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:
@ -66,7 +66,7 @@ begin
|
||||
exit;
|
||||
item := TVpICalEntry(FItems[ARow - Grid.FixedRows]);
|
||||
if item <> nil then
|
||||
item.Skip := not AChecked;
|
||||
item.Checked := AChecked;
|
||||
end;
|
||||
|
||||
function TVpImportPreviewICalEventForm.GetCellText(ACol, ARow: Integer): String;
|
||||
@ -208,7 +208,7 @@ begin
|
||||
exit;
|
||||
item := TVpICalEntry(FItems[ARow - Grid.FixedRows]);
|
||||
if (item <> nil) then
|
||||
Result := not item.Skip;
|
||||
Result := item.Checked;
|
||||
end;
|
||||
|
||||
procedure TVpImportPreviewICalEventForm.PrepareItems;
|
||||
|
Reference in New Issue
Block a user