This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Tweaked ValueTree::toXmlString() to make it return a bare document without the XML header
tags/2021-05-28
jules
6 years ago
parent
1f63493031
commit
e07782ff38
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_data_structures/values/juce_ValueTree.cpp
+ 1
- 1
modules/juce_data_structures/values/juce_ValueTree.cpp
View File
@@ -1020,7 +1020,7 @@ String ValueTree::toXmlString() const
std::unique_ptr<XmlElement> xml (createXml());
if (xml != nullptr)
return xml->createDocument ({});
return xml->createDocument ({}
, false, false
);
return {};
}
Write
Preview
Loading…
Cancel
Save