From b94e0b550a9201d76fccac662eeab00af7aeccbb Mon Sep 17 00:00:00 2001 From: vincents Date: Wed, 20 Oct 2010 13:06:11 +0000 Subject: [PATCH] ide: fixed formatting og number of lines, when the thousand seperator is not a ansi char, fixes issue #17674 git-svn-id: trunk@27774 - --- ide/infobuild.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/infobuild.pp b/ide/infobuild.pp index 50a0d23b57..f8da113f3a 100644 --- a/ide/infobuild.pp +++ b/ide/infobuild.pp @@ -232,7 +232,7 @@ begin NL := StrTointDef(S,0); NLines := NLines + NL; - LNLines.Caption := FormatFloat('#,##0',NLines); + LNLines.Caption := AnsiToUTF8(FormatFloat('#,##0',NLines)); Ok := false; end; If Ok then PCurrentStatus.Caption := SStatus;