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

Updated the documentation of some methods which now return std::unique_ptr instead of raw pointers to remove references to deleting the returned object

This commit is contained in:
ed 2020-04-20 11:08:22 +01:00
parent 09bf952820
commit c2e3dcd8bf
9 changed files with 10 additions and 31 deletions

View file

@ -419,7 +419,6 @@ public:
/** Creates an XmlElement that holds a complete image of this tree and all its children.
If this tree is invalid, this may return nullptr. Otherwise, the XML that is produced can
be used to recreate a similar tree by calling ValueTree::fromXml().
The caller must delete the object that is returned.
@see fromXml, toXmlString
*/
std::unique_ptr<XmlElement> createXml() const;