ads: Remove redundant occurrences of "virtual"

As suggested by clang-tidy's "modernize-use-override" check and to match
Qt Creator's coding guidelines.

Change-Id: I2cfef113e21a0cd44d18a5b98e9bc8427563c53a
Reviewed-by: Henning Gründl <henning.gruendl@qt.io>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Alessandro Portale
2020-06-14 14:41:00 +02:00
parent 0795d5f42d
commit d3f85ee409
13 changed files with 74 additions and 74 deletions

View File

@@ -226,13 +226,13 @@ public:
/**
* Virtual Destructor
*/
virtual ~DockWidget() override;
~DockWidget() override;
/**
* We return a fixed minimum size hint or the size hint of the content
* widget if minimum size hint mode is MinimumSizeHintFromContent
*/
virtual QSize minimumSizeHint() const override;
QSize minimumSizeHint() const override;
/**
* Sets the widget for the dock widget to widget.
@@ -439,7 +439,7 @@ public: // reimplements QFrame
/**
* Emits titleChanged signal if title change event occurs
*/
virtual bool event(QEvent *event) override;
bool event(QEvent *event) override;
/**
* This property controls whether the dock widget is open or closed.