mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
rest of virtuals removed
virtuals removed and replaced with override where necessary on the rest of the code base, clang-tidy to the rescue.
This commit is contained in:
parent
efbe5e90f5
commit
2b295fb7f0
454 changed files with 4162 additions and 4156 deletions
|
|
@ -59,7 +59,7 @@ class GuiConsole : public GuiArrayCtrl
|
|||
/// @}
|
||||
|
||||
// GuiArrayCtrl.
|
||||
virtual void onCellSelected( Point2I cell );
|
||||
void onCellSelected( Point2I cell ) override;
|
||||
|
||||
public:
|
||||
GuiConsole();
|
||||
|
|
@ -68,9 +68,9 @@ class GuiConsole : public GuiArrayCtrl
|
|||
DECLARE_DESCRIPTION( "Control that displays the console log text." );
|
||||
|
||||
// GuiArrayCtrl.
|
||||
virtual bool onWake();
|
||||
virtual void onPreRender();
|
||||
virtual void onRenderCell(Point2I offset, Point2I cell, bool selected, bool mouseOver);
|
||||
bool onWake() override;
|
||||
void onPreRender() override;
|
||||
void onRenderCell(Point2I offset, Point2I cell, bool selected, bool mouseOver) override;
|
||||
|
||||
void setDisplayFilters(bool errors, bool warns, bool normal);
|
||||
bool getErrorFilter() { return mDisplayErrors; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue