summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/textbox.h')
-rw-r--r--src/gui/widgets/textbox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/textbox.h b/src/gui/widgets/textbox.h
index a95fd118a..61cf6f665 100644
--- a/src/gui/widgets/textbox.h
+++ b/src/gui/widgets/textbox.h
@@ -57,14 +57,14 @@ class TextBox final : public gcn::TextBox
/**
* Draws the text.
*/
- inline void draw(gcn::Graphics *graphics)
+ inline void draw(gcn::Graphics *graphics) override
{
if (mTextColor)
mForegroundColor = *mTextColor;
gcn::TextBox::draw(graphics);
}
- void keyPressed(gcn::KeyEvent& keyEvent);
+ void keyPressed(gcn::KeyEvent& keyEvent) override;
private:
int mMinWidth;