1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:38:13 +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

@ -58,6 +58,8 @@
#include <sys/ioctl.h>
#include <unistd.h>
namespace VT {
void TerminalWidget::set_pty_master_fd(int fd)
{
m_ptm_fd = fd;
@ -1130,3 +1132,5 @@ void TerminalWidget::set_font_and_resize_to_fit(const Gfx::Font& font)
set_font(font);
resize(widget_size_for_font(font));
}
}