mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Documentation fixes.
This commit is contained in:
parent
15711ae344
commit
59569fb58e
5 changed files with 17 additions and 11 deletions
|
|
@ -452,10 +452,14 @@ void StringArray::removeDuplicates (const bool ignoreCase)
|
|||
|
||||
void StringArray::appendNumbersToDuplicates (const bool ignoreCase,
|
||||
const bool appendNumberToFirstInstance,
|
||||
const juce_wchar* const preNumberString,
|
||||
const juce_wchar* const postNumberString)
|
||||
const juce_wchar* preNumberString,
|
||||
const juce_wchar* postNumberString)
|
||||
{
|
||||
jassert (preNumberString != 0 && postNumberString != 0); // These strings can't be null pointers..
|
||||
if (preNumberString == 0)
|
||||
preNumberString = T(" (");
|
||||
|
||||
if (postNumberString == 0)
|
||||
postNumberString = T(")");
|
||||
|
||||
for (int i = 0; i < size() - 1; ++i)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue