mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
11 lines
148 B
C++
11 lines
148 B
C++
#include <LibGUI/GTextBox.h>
|
|
|
|
GTextBox::GTextBox(GWidget* parent)
|
|
: GTextEditor(GTextEditor::SingleLine, parent)
|
|
{
|
|
}
|
|
|
|
GTextBox::~GTextBox()
|
|
{
|
|
}
|