Assistant: Add missing bitmap accessor for terminal actions

This commit is contained in:
Gunnar Beutner 2021-07-03 21:13:30 +02:00 committed by Andreas Kling
parent a4b4397a10
commit 6af08f950a
Notes: sideshowbarker 2024-07-18 10:32:49 +09:00

View file

@ -106,6 +106,8 @@ public:
~TerminalResult() override = default;
void activate() const override;
virtual Gfx::Bitmap const* bitmap() const override { return m_bitmap; }
private:
RefPtr<Gfx::Bitmap> m_bitmap;
};