From fe7287f70918021ce6951a3da5933ec53fdd46f3 Mon Sep 17 00:00:00 2001 From: Juha Date: Sun, 26 Mar 2023 12:55:18 +0300 Subject: [PATCH] IDE: Formatting. --- packager/packagesystem.pas | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packager/packagesystem.pas b/packager/packagesystem.pas index cb493a2e62..fe930b31d8 100644 --- a/packager/packagesystem.pas +++ b/packager/packagesystem.pas @@ -713,11 +713,9 @@ begin if fpfValueChanged in Param.Flags then begin Msg:=''; if Param.Kind in [fpkBoolean,fpkValue] then - Msg:=Format(lisPassingCompilerOptionTwiceWithDifferentValues, [Param. - Name]) + Msg:=Format(lisPassingCompilerOptionTwiceWithDifferentValues, [Param.Name]) else if Param.Kind=fpkDefine then - Msg:=Format(lisPassingCompilerDefineTwiceWithDifferentValues, [Param. - Name]); + Msg:=Format(lisPassingCompilerDefineTwiceWithDifferentValues, [Param.Name]); if Msg='' then continue; if Target<>'' then Msg:=Target+' '+Msg; IDEMessagesWindow.AddCustomMessage(mluNote,Msg,'',0,0,ViewCaption);