BUG: Fixes overrides a destructor but is not marked 'override' (#836)
- If compiling with flag [-Werror,-Winconsistent-missing-destructor-override]
This commit is contained in:
@@ -176,7 +176,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CDockAreaTitleBar();
|
~CDockAreaTitleBar() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the pointer to the tabBar()
|
* Returns the pointer to the tabBar()
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CDockWidgetTab();
|
~CDockWidgetTab() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true, if this is the active tab
|
* Returns true, if this is the active tab
|
||||||
|
|||||||
Reference in New Issue
Block a user