Skip to content

Commit 1189cfe

Browse files
authored
Merge pull request #54 from paweld/gus
encoding fixes
2 parents 747e9b1 + 002da24 commit 1189cfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utilities/results_generator/Common/resultsgenerator.common.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ procedure TResults.Generate;
164164
FList[index2].Compiler:= 'lazarus-3.0, fpc-3.2.2';
165165
end;
166166

167-
FList[index2].Name:= FConfig.Entries[index].Name;
168-
FList[index2].Notes:= FConfig.Entries[index].Notes;
167+
FList[index2].Name:= UTF8Encode(FConfig.Entries[index].Name);
168+
FList[index2].Notes:= UTF8Encode(FConfig.Entries[index].Notes);
169169
FList[index2].Count := FResult.times.Count;
170170
FList[index2].Result:= FResult.times.AvgValueWithOutMinMax;
171171
finally

0 commit comments

Comments
 (0)