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:
parent
767ff27307
commit
4e77678299
11 changed files with 138 additions and 103 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue