fpcunitconsolerunner: less hints

git-svn-id: trunk@50012 -
This commit is contained in:
mattias 2015-10-09 07:21:37 +00:00
parent 7cfd666797
commit cc6ad86c44

View File

@ -249,10 +249,10 @@ var
begin begin
if StyleSheet<>'' then begin if StyleSheet<>'' then begin
Doc.StylesheetType := 'text/xsl'; Doc.StylesheetType := 'text/xsl';
Doc.StylesheetHRef := StyleSheet; Doc.StylesheetHRef := UTF8Decode(StyleSheet);
end; end;
n := Doc.CreateElement('Title'); n := Doc.CreateElement('Title');
n.AppendChild(Doc.CreateTextNode(Title)); n.AppendChild(Doc.CreateTextNode(UTF8Decode(Title)));
Doc.FirstChild.AppendChild(n); Doc.FirstChild.AppendChild(n);
end; end;