You've already forked lazarus-ccr
tvplanit: Export contacts as vcard files. Fix some bugs in vcard import.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8395 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -79,15 +79,15 @@ begin
|
||||
|
||||
s := ACard.GetWorkAddress;
|
||||
if s <> '' then
|
||||
Result := Result + LineEnding + RSWorkAddress + ' ' + s;
|
||||
Result := Result + LineEnding + RSWorkAddress + ': ' + s;
|
||||
|
||||
s := ACard.GetHomeAddress;
|
||||
if s <> '' then
|
||||
Result := Result + LineEnding + RSHomeAddress + ' ' + s;
|
||||
Result := Result + LineEnding + RSHomeAddress + ': ' + s;
|
||||
|
||||
s := ACard.GetPhone;
|
||||
if s <> '' then
|
||||
Result := Result + LineEnding + RSPhone + ' ' + s;
|
||||
Result := Result + LineEnding + RSPhone + ': ' + s;
|
||||
|
||||
s := ACard.GetEMail;
|
||||
if s <> '' then
|
||||
|
Reference in New Issue
Block a user