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

Terminal: Store horizontal tabs in a Vector.

There's no need to muck around with manual malloc()/free() here.
This commit is contained in:
Andreas Kling 2019-06-06 11:42:05 +02:00
parent ecb72dd991
commit e8f35ef311
2 changed files with 2 additions and 5 deletions

View file

@ -104,7 +104,6 @@ void Terminal::Line::clear(Attribute attribute)
Terminal::~Terminal()
{
free(m_horizontal_tabs);
}
void Terminal::clear()
@ -889,9 +888,7 @@ void Terminal::set_size(word columns, word rows)
m_saved_cursor_row = 0;
m_saved_cursor_column = 0;
if (m_horizontal_tabs)
free(m_horizontal_tabs);
m_horizontal_tabs = static_cast<byte*>(malloc(columns));
m_horizontal_tabs.resize(columns);
for (unsigned i = 0; i < columns; ++i)
m_horizontal_tabs[i] = (i % 8) == 0;
// Rightmost column is always last tab on line.