DrawSketchController and DrawSketchDefaultWidgetController : fix lint warnings

This commit is contained in:
Paddle
2023-11-01 16:13:18 +01:00
committed by abdullahtahiriyo
parent a0609b1a28
commit aef013473b
2 changed files with 4 additions and 4 deletions

View File

@@ -184,7 +184,7 @@ public:
/** Creates the controller.
* @param dshandler a controllable DSH handler
*/
DrawSketchController(HandlerT* dshandler)
explicit DrawSketchController(HandlerT* dshandler)
: handler(dshandler)
, keymanager(std::make_unique<DrawSketchKeyboardManager>())
{}
@@ -299,7 +299,7 @@ public:
/** @name Specialisation Interface */
/** These functions offer a specialisation interface. Non-virtual functions are specific to
* this controller. Virtual functions may depend on input from a derived controller, and thus
* the specialisation needs to be of an overriden version (so as to be able to access members
* the specialisation needs to be of an overridden version (so as to be able to access members
* of the derived controller).
*/
//@{

View File

@@ -113,7 +113,7 @@ protected:
using ControllerBase::handler;
public:
DrawSketchDefaultWidgetController(HandlerT* dshandler)
explicit DrawSketchDefaultWidgetController(HandlerT* dshandler)
: ControllerBase(dshandler)
{}
@@ -164,7 +164,7 @@ public:
/** @name Specialisation Interface */
/** These functions offer a specialisation interface. Non-virtual functions are specific to
* this controller. Virtual functions may depend on input from a derived controller, and thus
* the specialisation needs to be of an overriden version (so as to be able to access members
* the specialisation needs to be of an overridden version (so as to be able to access members
* of the derived controller).
*/
/// Change DSH to reflect a value entered in the widget