1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 00:37:35 +00:00

Terminal: Move the notifier into the Terminal class.

This commit is contained in:
Andreas Kling 2019-02-11 15:07:05 +01:00
parent 3351f1ccc1
commit c75ecaae32
3 changed files with 29 additions and 26 deletions

View file

@ -6,6 +6,7 @@
#include <SharedGraphics/GraphicsBitmap.h>
#include <SharedGraphics/Rect.h>
#include <LibGUI/GWidget.h>
#include <LibGUI/GNotifier.h>
class Font;
@ -140,4 +141,6 @@ private:
bool m_need_full_flush { false };
RetainPtr<Font> m_font;
GNotifier m_notifier;
};