From 207ed46b7d5fbabb2a86cb6de6a70c71cf577647 Mon Sep 17 00:00:00 2001 From: juha Date: Sat, 2 Oct 2010 07:26:17 +0000 Subject: [PATCH] Converter: improve LCL path check dialog a little. git-svn-id: trunk@27543 - --- converter/convertdelphi.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/converter/convertdelphi.pas b/converter/convertdelphi.pas index af2bf412e9..2c15631bc8 100644 --- a/converter/convertdelphi.pas +++ b/converter/convertdelphi.pas @@ -299,10 +299,10 @@ begin begin LCLPath:=LCLPath+'$(TargetCPU)-$(TargetOS)'; Result:=QuestionDlg(lisLCLUnitPathMissing, - Format(lisTheCurrentUnitPathForTheFileIsThePathToTheLCLUnits, [#13, '"', - Filename, '"', #13, '"', UnitPath, '"', #13, #13, '"', LCLPath, '"', - #13, #13, #13]), - mtError,[mrCancel,'Skip this step',mrAbort,'Abort'],0); + Format(lisTheCurrentUnitPathForTheFileIsThePathToTheLCLUnits, + [sLineBreak,'"',Filename,'"',sLineBreak,'"',UnitPath,'"',sLineBreak, + sLineBreak,'"',LCLPath,'"',sLineBreak,sLineBreak,sLineBreak]), + mtError,[mrOK,'Continue',mrAbort,'Abort'],0); exit; end; Result:=mrOk;