LibGUI: Make GTextBox non-final

There's nothing wrong with subclassing GTextBox.
This commit is contained in:
Andreas Kling 2019-10-28 18:48:29 +01:00
commit f0da3ab9b2
Notes: sideshowbarker 2024-07-19 11:30:48 +09:00

View file

@ -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);