COMP: Fix warnings about override on public destructors (#788)
This commit is contained in:
@@ -93,7 +93,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CAutoHideTab();
|
~CAutoHideTab() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update stylesheet style if a property changes
|
* Update stylesheet style if a property changes
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CDockAreaWidget();
|
~CDockAreaWidget() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the dock manager object this dock area belongs to
|
* Returns the dock manager object this dock area belongs to
|
||||||
|
|||||||
@@ -219,7 +219,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CDockContainerWidget();
|
~CDockContainerWidget() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds dockwidget into the given area.
|
* Adds dockwidget into the given area.
|
||||||
|
|||||||
@@ -289,7 +289,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CDockWidget();
|
~CDockWidget() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We return a fixed minimum size hint or the size hint of the content
|
* We return a fixed minimum size hint or the size hint of the content
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Virtual Destructor
|
* Virtual Destructor
|
||||||
*/
|
*/
|
||||||
virtual ~CFloatingDockContainer();
|
~CFloatingDockContainer() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Access function for the internal dock container
|
* Access function for the internal dock container
|
||||||
|
|||||||
Reference in New Issue
Block a user