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

LibVT: Move TerminalWidget from the Terminal app to here

It would be nice to be able to reuse this widget in other apps. :^)
This commit is contained in:
Andreas Kling 2019-10-21 19:50:07 +02:00
parent c1f72e0bbf
commit 8b4903e733
7 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,3 @@
#include "TerminalWidget.h"
#include <Kernel/KeyCode.h>
#include <LibCore/CArgsParser.h>
#include <LibCore/CUserInfo.h>
@ -14,6 +13,7 @@
#include <LibGUI/GSlider.h>
#include <LibGUI/GWidget.h>
#include <LibGUI/GWindow.h>
#include <LibVT/TerminalWidget.h>
#include <assert.h>
#include <errno.h>
#include <fcntl.h>