From 44b95915d134dde5b0c6b3535a73b3487b7d7bc3 Mon Sep 17 00:00:00 2001 From: vincents Date: Mon, 7 May 2007 07:56:01 +0000 Subject: [PATCH] IDE: show about text in paragraphs git-svn-id: trunk@11094 - --- ide/aboutfrm.pas | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ide/aboutfrm.pas b/ide/aboutfrm.pas index d15d1ef4eb..9d669a3d3d 100644 --- a/ide/aboutfrm.pas +++ b/ide/aboutfrm.pas @@ -100,10 +100,12 @@ begin end; procedure TAboutForm.AboutFormCreate(Sender:TObject); +const + DoubleLineEnding = LineEnding + LineEnding; + {The compiler generated date string is always of the form y/m/d. This function gives it a string respresentation according to the shortdateformat} - function GetLocalizedBuildDate(): string; var BuildDate: string; @@ -136,11 +138,11 @@ begin Constraints.MinWidth:= 600; Constraints.MinHeight:= 300; - AboutMemo.Lines.Text:=Format(lisAboutLazarusMsg,[LineEnding,LineEnding,LineEnding]) - +LineEnding+LineEnding + AboutMemo.Lines.Text:= + Format(lisAboutLazarusMsg,[DoubleLineEnding,DoubleLineEnding,DoubleLineEnding]) + +DoubleLineEnding +'Official: http://sourceforge.net/projects/lazarus/'+LineEnding - +'Tutorials: http://lazarus-ccr.sourceforge.net'+LineEnding - ; + +'Tutorials: http://lazarus-ccr.sourceforge.net'+LineEnding; LoadContributors; LoadAcknowledgements; CloseButton.Caption:=lisClose;