From b439763004fa7d2cc73552d56bccfb0a29d23c2c Mon Sep 17 00:00:00 2001 From: maxim Date: Thu, 24 Jan 2019 23:47:17 +0000 Subject: [PATCH] POChecker: added ability to ignore master files in directories where .pocheckerignore file is present git-svn-id: trunk@60211 - --- components/pochecker/pocheckermain.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pochecker/pocheckermain.pp b/components/pochecker/pocheckermain.pp index caec60667b..90adb29bae 100644 --- a/components/pochecker/pocheckermain.pp +++ b/components/pochecker/pocheckermain.pp @@ -633,7 +633,7 @@ begin begin Str := S[i]; //skip files that do not exist (anymore) - if FileExistsUtf8(Str) then + if (FileExistsUtf8(Str)) and (not FileExistsUTF8(ExtractFilePath(Str) + '.pocheckerignore')) then begin Idx := MasterPoListBox.Items.IndexOf(Str); if (Idx = -1) then