forked from qt-creator/qt-creator
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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user