File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class APP_EXPORT QgsMapToolAddPart : public QgsMapToolCapture
26
26
void canvasReleaseEvent ( QgsMapMouseEvent * e ) override ;
27
27
void cadCanvasReleaseEvent ( QgsMapMouseEvent * e ) override ;
28
28
29
- void activate ();
29
+ void activate () override ;
30
30
31
31
private:
32
32
/* * Check if there is any feature selected */
Original file line number Diff line number Diff line change @@ -70,12 +70,12 @@ class GUI_EXPORT QgsMapToolAdvancedDigitizing : public QgsMapToolEdit
70
70
/* *
71
71
* Registers this maptool with the cad dock widget
72
72
*/
73
- void activate ();
73
+ void activate () override ;
74
74
75
75
/* *
76
76
* Unregisters this maptool from the cad dock widget
77
77
*/
78
- void deactivate ();
78
+ void deactivate () override ;
79
79
80
80
QgsAdvancedDigitizingDockWidget* cadDockWidget () const { return mCadDockWidget ; }
81
81
Original file line number Diff line number Diff line change @@ -61,13 +61,13 @@ class GUI_EXPORT QgsMapToolCapture : public QgsMapToolAdvancedDigitizing
61
61
*
62
62
* @param e The mouse event
63
63
*/
64
- void cadCanvasMoveEvent ( QgsMapMouseEvent * e );
64
+ void cadCanvasMoveEvent ( QgsMapMouseEvent * e ) override ;
65
65
66
66
/* *
67
67
* Intercept key events like Esc or Del to delete the last point
68
68
* @param e key event
69
69
*/
70
- void keyPressEvent ( QKeyEvent* e );
70
+ void keyPressEvent ( QKeyEvent* e ) override ;
71
71
72
72
#ifdef Q_OS_WIN
73
73
virtual bool eventFilter ( QObject *obj, QEvent *e ) override ;
You can’t perform that action at this time.
0 commit comments