mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
LibGUI: Make GTextBox non-final
There's nothing wrong with subclassing GTextBox.
This commit is contained in:
parent
01c6088789
commit
f0da3ab9b2
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <AK/Function.h>
|
||||
#include <LibGUI/GTextEditor.h>
|
||||
|
||||
class GTextBox final : public GTextEditor {
|
||||
class GTextBox : public GTextEditor {
|
||||
C_OBJECT(GTextBox)
|
||||
public:
|
||||
explicit GTextBox(GWidget* parent);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue