From 8198b8720d94a85d70152ccdc218442827cde829 Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Thu, 26 Oct 2017 11:35:33 -0500 Subject: [PATCH] Ported XParser to Vala upstream --- gxml/XParser.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gxml/XParser.vala b/gxml/XParser.vala index 71a42c4e..b053020f 100644 --- a/gxml/XParser.vala +++ b/gxml/XParser.vala @@ -682,7 +682,7 @@ public class GXml.XParser : Object, GXml.Parser { tw.flush (); } if (n is GXml.DomDocumentType) { - size += tw.write_document_type ((n as DomDocumentType).name, + size += tw.write_dtd ((n as DomDocumentType).name, (n as DomDocumentType).public_id, (n as DomDocumentType).system_id, null); -- GitLab