1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:47:45 +00:00

LibVT: Use NNOP<KString> to store window titles in the Kernel

This will allow us to eventually propagate allocation failure.
This commit is contained in:
Idan Horowitz 2022-02-15 22:46:49 +02:00 committed by Andreas Kling
parent c8db8d6152
commit 5b572393a9
3 changed files with 24 additions and 3 deletions

View file

@ -7,11 +7,14 @@
#pragma once
#include <AK/Noncopyable.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibVT/Color.h>
#include <LibVT/XtermColors.h>
#ifndef KERNEL
# include <AK/String.h>
#endif
namespace VT {
struct Attribute {