Sketcher Gui: DrawSketchController - lints

This commit is contained in:
Abdullah Tahiri
2023-11-06 18:24:50 +01:00
committed by abdullahtahiriyo
parent a28b2dcf37
commit c09793e811
2 changed files with 7 additions and 2 deletions

View File

@@ -189,7 +189,12 @@ public:
, keymanager(std::make_unique<DrawSketchKeyboardManager>())
{}
~DrawSketchController()
DrawSketchController(const DrawSketchController&) = delete;
DrawSketchController(DrawSketchController&&) = delete;
bool operator=(const DrawSketchController&) = delete;
bool operator=(DrawSketchController&&) = delete;
virtual ~DrawSketchController()
{}
/** @name functions NOT intended for specialisation offering a NVI for extension */

View File

@@ -117,7 +117,7 @@ public:
: ControllerBase(dshandler)
{}
~DrawSketchDefaultWidgetController()
~DrawSketchDefaultWidgetController() override
{
connectionParameterValueChanged.disconnect();
connectionCheckboxCheckedChanged.disconnect();