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:
Michael Jackson
2026-04-23 16:43:02 -04:00
committed by GitHub
parent 7b30229355
commit a9aa10f4c2
2 changed files with 2 additions and 2 deletions

View File

@@ -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()

View File

@@ -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