1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Reverted the change to ValueTree::toXmlString(), as omitting the XML header could break existing code (will address this differently in a future commit)

This commit is contained in:
jules 2018-10-17 11:02:27 +01:00
parent a17d3e2bab
commit 8166b0018d

View file

@ -1020,7 +1020,7 @@ String ValueTree::toXmlString() const
std::unique_ptr<XmlElement> xml (createXml());
if (xml != nullptr)
return xml->createDocument ({}, false, false);
return xml->createDocument ({});
return {};
}