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

Introjucer: App icons are now specified per-exporter type rather than globally for the project.

This commit is contained in:
jules 2012-02-13 14:09:30 +00:00
parent 767ff27307
commit 4e77678299
11 changed files with 138 additions and 103 deletions

View file

@ -1009,6 +1009,12 @@ ValueTree ValueTree::readFromData (const void* const data, const size_t numBytes
return readFromStream (in);
}
ValueTree ValueTree::readFromGZIPData (const void* const data, const size_t numBytes)
{
MemoryInputStream in (data, numBytes, false);
GZIPDecompressorInputStream gzipStream (in);
return readFromStream (gzipStream);
}
//==============================================================================
#if JUCE_UNIT_TESTS