1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 05:05:23 +03:00

Fix ambiguous XMLElement reference

This commit is contained in:
Yuri Strot 2019-02-14 14:23:34 +07:00
parent 8c9fd67892
commit e4c3bcd759

View File

@ -120,7 +120,7 @@ open class SVGParser {
}
let parsedXml = config.parse(xmlString)
var svgElement: XMLElement?
var svgElement: SWXMLHash.XMLElement?
for child in parsedXml.children {
if let element = child.element {
if element.name == "svg" {