diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 01:03:22 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-12 01:03:22 +0200 |
commit | 415c4b90c53900ac5d0f2a1c069720dbc86ff65c (patch) | |
tree | ef2df44e98a52eb2ab7b107f73d4ac2e9843260a /Widgets/TerminalWidget.cpp | |
parent | bd6172e3c77695f5662b847775424723f71f6a18 (diff) | |
download | serenity-415c4b90c53900ac5d0f2a1c069720dbc86ff65c.zip |
Start adding a Window class.
Diffstat (limited to 'Widgets/TerminalWidget.cpp')
-rw-r--r-- | Widgets/TerminalWidget.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Widgets/TerminalWidget.cpp b/Widgets/TerminalWidget.cpp index c96d5fc7a2..f3be6415b0 100644 --- a/Widgets/TerminalWidget.cpp +++ b/Widgets/TerminalWidget.cpp @@ -12,8 +12,6 @@ TerminalWidget* g_tw; TerminalWidget::TerminalWidget(Widget* parent) : Widget(parent) { - setIsWindow(true); - g_tw = this; auto& font = Font::defaultFont(); |