1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

XML parsing performance fix.

This commit is contained in:
Julian Storer 2011-02-11 14:50:20 +00:00
parent 2d10b0b43d
commit 52de2d36a9
2 changed files with 2 additions and 2 deletions

View file

@ -15070,7 +15070,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
++len;
}
textElementContent.append (start.getAddress(), len);
textElementContent.appendCharPointer (start, len);
}
}

View file

@ -604,7 +604,7 @@ void XmlDocument::readChildElements (XmlElement* parent)
++len;
}
textElementContent.append (start.getAddress(), len);
textElementContent.appendCharPointer (start, len);
}
}