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

ValueTree bugfix. Minor tweaks and new method StringArray::removeRange.

This commit is contained in:
Julian Storer 2010-04-27 15:08:14 +01:00
parent 082dff25dd
commit 10f53a1cb4
9 changed files with 59 additions and 14 deletions

View file

@ -230,6 +230,11 @@ void StringArray::removeString (const String& stringToRemove,
}
}
void StringArray::removeRange (int startIndex, int numberToRemove)
{
strings.removeRange (startIndex, numberToRemove);
}
//==============================================================================
void StringArray::removeEmptyStrings (const bool removeWhitespaceStrings)
{