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

Minor string changes.

This commit is contained in:
Julian Storer 2010-03-26 18:23:54 +00:00
parent e0e12a8bd9
commit 66643e85ac
74 changed files with 895 additions and 889 deletions

View file

@ -61,7 +61,7 @@ XmlElement::XmlElement (const String& tagName_) throw()
jassert (tagName_.containsNonWhitespaceChars())
// The tag can't contain spaces or other characters that would create invalid XML!
jassert (! tagName_.containsAnyOf (T(" <>/&")));
jassert (! tagName_.containsAnyOf (" <>/&"));
}
XmlElement::XmlElement (int /*dummy*/) throw()