1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00

Tidied up some methods in String, StringArray, and input streams. Reduced CoreAudio buffer size limit.

This commit is contained in:
Julian Storer 2010-03-13 16:39:55 +00:00
parent 24a73b96ef
commit 3b77f1233f
16 changed files with 443 additions and 419 deletions

View file

@ -187,7 +187,7 @@ public:
@returns the number of tokens added
*/
int addTokens (const tchar* const stringToTokenise,
int addTokens (const String& stringToTokenise,
const bool preserveQuotedStrings);
/** Breaks up a string into tokens and adds them to this array.
@ -203,9 +203,9 @@ public:
between quotes is not broken up into tokens.
@returns the number of tokens added
*/
int addTokens (const tchar* const stringToTokenise,
const tchar* breakCharacters,
const tchar* quoteCharacters);
int addTokens (const String& stringToTokenise,
const String& breakCharacters,
const String& quoteCharacters);
/** Breaks up a string into lines and adds them to this array.
@ -213,7 +213,7 @@ public:
to the array. Line-break characters are omitted from the strings that are added to
the array.
*/
int addLines (const tchar* stringToBreakUp);
int addLines (const String& stringToBreakUp);
//==============================================================================
/** Removes all elements from the array. */