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:
parent
06fb01aab3
commit
2b06e4f6d9
5 changed files with 6 additions and 6 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue