mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Use ignoreCase in StringPairArray::containsKey
This commit is contained in:
parent
314ef13a63
commit
f4eec3d80a
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ String StringPairArray::getValue (StringRef key, const String& defaultReturnValu
|
|||
|
||||
bool StringPairArray::containsKey (StringRef key) const noexcept
|
||||
{
|
||||
return keys.contains (key);
|
||||
return keys.contains (key, ignoreCase);
|
||||
}
|
||||
|
||||
void StringPairArray::set (const String& key, const String& value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue