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

LibVT: Put TerminalWidget in the VT namespace :^)

This commit is contained in:
Andreas Kling 2021-02-27 17:49:08 +01:00
parent 340180ba05
commit 2c1f71055f
5 changed files with 24 additions and 17 deletions

View file

@ -37,6 +37,8 @@
#include <LibVT/Range.h>
#include <LibVT/Terminal.h>
namespace VT {
class TerminalWidget final
: public GUI::Frame
, public VT::TerminalClient {
@ -221,3 +223,5 @@ private:
Gfx::IntPoint m_left_mousedown_position;
};
}