mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 01:05:06 +00:00
10 lines
148 B
C++
10 lines
148 B
C++
#include <LibGUI/GTextBox.h>
|
|
|
|
GTextBox::GTextBox(GWidget* parent)
|
|
: GTextEditor(GTextEditor::SingleLine, parent)
|
|
{
|
|
}
|
|
|
|
GTextBox::~GTextBox()
|
|
{
|
|
}
|