From 055d910ecd0147e7a8c45e1f6ea45a11234c075e Mon Sep 17 00:00:00 2001 From: maxim Date: Thu, 19 Apr 2018 23:32:09 +0000 Subject: [PATCH] POChecker: report missing files in ascending alphabet order in all cases git-svn-id: trunk@57676 - --- components/pochecker/pofamilylists.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/pochecker/pofamilylists.pp b/components/pochecker/pofamilylists.pp index a1f73bac1a..2d0de8e9a0 100644 --- a/components/pochecker/pofamilylists.pp +++ b/components/pochecker/pofamilylists.pp @@ -93,10 +93,10 @@ begin Add(APoFamily); end else - Msg := Format('"%s"',[ChildName]) + LineEnding + Msg; + Msg := Msg + Format('"%s"',[ChildName]) + LineEnding; end else - Msg := Format('"%s"',[MasterName]) + LineEnding + Msg; + Msg := Msg + Format('"%s"',[MasterName]) + LineEnding; end; end;