1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-23 10:17:41 +00:00

LibDraw: Override set_{non,}volatile in GIFLoader

This commit is contained in:
joshua stein 2020-02-05 10:25:37 -06:00 committed by Andreas Kling
parent 519bc758f1
commit 0c20f98c1c

View file

@ -41,6 +41,8 @@ public:
virtual Size size() override;
virtual RefPtr<GraphicsBitmap> bitmap() override;
virtual void set_volatile() override;
[[nodiscard]] virtual bool set_nonvolatile() override;
private:
OwnPtr<GIFLoadingContext> m_context;