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

Major changes to the way Drawables are converted to ValueTrees (with more changes still to come in this area). Important fix to DirectoryIterator. Minor fix for ASIO. Jucer development.

This commit is contained in:
Julian Storer 2010-05-21 22:29:31 +01:00
parent 97982bcfdc
commit 8ff6737261
75 changed files with 4704 additions and 2247 deletions

View file

@ -1055,9 +1055,7 @@ static int indexOfMatch (const juce_wchar* const wildcard,
else
{
if (wc == '*' && (wildcard [i + 1] == 0
|| indexOfMatch (wildcard + i + 1,
test + start + i,
ignoreCase) >= 0))
|| indexOfMatch (wildcard + i + 1, test + start + i, ignoreCase) >= 0))
{
return start;
}
@ -1093,9 +1091,7 @@ bool String::matchesWildcard (const String& wildcard, const bool ignoreCase) con
else
{
return wc == '*' && (wildcard [i + 1] == 0
|| indexOfMatch (wildcard.text + i + 1,
text + i,
ignoreCase) >= 0);
|| indexOfMatch (wildcard.text + i + 1, text + i, ignoreCase) >= 0);
}
}
}