mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
f0da3ab9b2
There's nothing wrong with subclassing GTextBox.
12 lines
218 B
C++
12 lines
218 B
C++
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibGUI/GTextEditor.h>
|
|
|
|
class GTextBox : public GTextEditor {
|
|
C_OBJECT(GTextBox)
|
|
public:
|
|
explicit GTextBox(GWidget* parent);
|
|
virtual ~GTextBox() override;
|
|
};
|