mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:17:34 +00:00
Use fooEvent() type names for the virtual event handlers.
This commit is contained in:
parent
dfb70ed234
commit
a3fb19fe9c
20 changed files with 84 additions and 84 deletions
|
@ -11,10 +11,10 @@ public:
|
|||
void setText(String&&);
|
||||
|
||||
private:
|
||||
virtual void onPaint(PaintEvent&) override;
|
||||
virtual void onMouseDown(MouseEvent&) override;
|
||||
virtual void onKeyDown(KeyEvent&) override;
|
||||
virtual void onTimer(TimerEvent&) override;
|
||||
virtual void paintEvent(PaintEvent&) override;
|
||||
virtual void mouseDownEvent(MouseEvent&) override;
|
||||
virtual void keyDownEvent(KeyEvent&) override;
|
||||
virtual void timerEvent(TimerEvent&) override;
|
||||
|
||||
void handleBackspace();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue