1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44: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

@ -334,7 +334,7 @@ const String StringArray::joinIntoString (const String& separator, int start, in
int StringArray::addTokens (const String& text, const bool preserveQuotedStrings)
{
return addTokens (text, T(" \n\r\t"), preserveQuotedStrings ? T("\"") : T(""));
return addTokens (text, " \n\r\t", preserveQuotedStrings ? "\"" : "");
}
int StringArray::addTokens (const String& text, const String& breakCharacters, const String& quoteCharacters)