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

Updated some documentation

This commit is contained in:
Tom Poole 2019-06-12 15:00:59 +01:00
parent 0ed474e412
commit 52a4939b62

View file

@ -192,7 +192,7 @@ public:
String customHeader; /**< If supplied, this header will be used (and customEncoding & addDefaultHeader will be ignored). */
String customEncoding; /**< If not empty and addDefaultHeader is true, this will be set as the encoding. Otherwise, a default of "UTF-8" will be used */
bool addDefaultHeader = true; /**< If true, a default header will be generated; otherwise just bare XML will be emitted. */
int lineWrapLength = 60; /**< A maximum line length before wrapping is done. (If allOnOneLine is true, this is ignored) */
int lineWrapLength = 60; /**< A maximum line length before wrapping is done. (If newLineChars is nullptr, this is ignored) */
const char* newLineChars = "\r\n"; /**< Allows the newline characters to be set. If you set this to nullptr, then the whole XML document will be placed on a single line. */
TextFormat singleLine() const; /**< returns a copy of this format with newLineChars set to nullptr. */