1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

XmlElement: Fix conversion issue when passing Identifiers to forEachXmlChildElementWithTagName

This commit is contained in:
reuk 2021-01-29 12:57:44 +00:00
parent 1b2f17f2e8
commit 6ff54f0a64
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -726,7 +726,7 @@ public:
}
@endcode
*/
Iterator<GetNextElementWithTagName> getChildWithTagNameIterator (const String& name) const
Iterator<GetNextElementWithTagName> getChildWithTagNameIterator (StringRef name) const
{
return Iterator<GetNextElementWithTagName> { getChildByName (name), name };
}