1
0
Fork 0
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:
Julian Storer 2010-03-23 20:56:48 +00:00
parent 15711ae344
commit 59569fb58e
5 changed files with 17 additions and 11 deletions

View file

@ -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)
{