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

NetworkGraphicsDemo: Fix build issue due to missing implementation of abstract function

This commit is contained in:
reuk 2025-06-03 11:57:06 +01:00
parent 5208b3ffc0
commit 4bb44c7b36
No known key found for this signature in database

View file

@ -429,6 +429,11 @@ public:
}
}
std::unique_ptr<ImageType> getPreferredImageTypeForTemporaryImages() const override
{
return std::make_unique<NativeImageType>();
}
private:
//==============================================================================
struct SharedCanvasHolder final : public ReferenceCountedObject