From 72400940295e1d79cc656e5ae550c03b017f91aa Mon Sep 17 00:00:00 2001 From: Maxim Ganetsky Date: Sat, 14 Dec 2024 22:29:15 +0300 Subject: [PATCH] IDE (Check Compiler Options For New Unit dialog): removed dangling semicolon after "then", patch by n7800, merge request !403 --- ide/checkcompoptsfornewunitdlg.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/checkcompoptsfornewunitdlg.pas b/ide/checkcompoptsfornewunitdlg.pas index 0c241e3d52..73181edc32 100644 --- a/ide/checkcompoptsfornewunitdlg.pas +++ b/ide/checkcompoptsfornewunitdlg.pas @@ -203,7 +203,7 @@ begin if DoNotWarnCheckBox.Checked then begin IgnoreIdentifier:=GetIgnorePathForCompOptsAndMainSrcDiffer(CompOpts); - if IgnoreIdentifier<>'' then; + if IgnoreIdentifier<>'' then InputHistories.Ignores.Add(IgnoreIdentifier,iiidForever); end;