1
Fork 0
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:
Andreas Kling 2019-10-28 18:48:29 +01:00
parent 01c6088789
commit f0da3ab9b2

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