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

Added selection to treeview persistent state. Minor optimisations to AudioThumbnail. Added FTP password support for win32 networking. Cleaned up some file dependencies and altered some return value types to allow better c++0x forwarding behaviour.

This commit is contained in:
Julian Storer 2011-05-30 21:10:57 +01:00
parent b3634661e6
commit 67e22bbb56
241 changed files with 8010 additions and 7848 deletions

View file

@ -164,7 +164,7 @@ void XmlDocument::setLastError (const String& desc, const bool carryOn)
errorOccurred = ! carryOn;
}
const String XmlDocument::getFileContents (const String& filename) const
String XmlDocument::getFileContents (const String& filename) const
{
if (inputSource != nullptr)
{
@ -717,7 +717,7 @@ void XmlDocument::readEntity (String& result)
}
}
const String XmlDocument::expandEntity (const String& ent)
String XmlDocument::expandEntity (const String& ent)
{
if (ent.equalsIgnoreCase ("amp")) return String::charToString ('&');
if (ent.equalsIgnoreCase ("quot")) return String::charToString ('"');
@ -742,7 +742,7 @@ const String XmlDocument::expandEntity (const String& ent)
return expandExternalEntity (ent);
}
const String XmlDocument::expandExternalEntity (const String& entity)
String XmlDocument::expandExternalEntity (const String& entity)
{
if (needToLoadDTD)
{
@ -834,7 +834,7 @@ const String XmlDocument::expandExternalEntity (const String& entity)
return entity;
}
const String XmlDocument::getParameterEntity (const String& entity)
String XmlDocument::getParameterEntity (const String& entity)
{
for (int i = 0; i < tokenisedDTD.size(); ++i)
{