summaryrefslogtreecommitdiff
path: root/LibGUI/GTextBox.cpp
blob: cd9e1cf49598b9ba55133dd53e193dc2160567e8 (plain)
1
2
3
4
5
6
7
8
9
10
#include <LibGUI/GTextBox.h>

GTextBox::GTextBox(GWidget* parent)
    : GTextEditor(GTextEditor::SingleLine, parent)
{
}

GTextBox::~GTextBox()
{
}