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:
parent
082dff25dd
commit
10f53a1cb4
9 changed files with 59 additions and 14 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue