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

Minor StringArray fixes.

This commit is contained in:
Julian Storer 2010-03-15 21:58:47 +00:00
parent 06fb01aab3
commit 2b06e4f6d9
5 changed files with 6 additions and 6 deletions

View file

@ -329,7 +329,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("\"") : 0);
return addTokens (text, T(" \n\r\t"), preserveQuotedStrings ? T("\"") : T(""));
}
int StringArray::addTokens (const String& text, const String& breakCharacters, const String& quoteCharacters)