Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix sip
  • Loading branch information
lbartoletti authored and nyalldawson committed Sep 12, 2021
1 parent 453d85c commit 16d8630
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -214,7 +214,7 @@ Clear any cached previous clicks and helper lines
determines if CAD tools are enabled or if map tools behaves "nomally"
%End

void switchZM( void );
void switchZM( );
%Docstring
Determines if Z or M will be enabled.

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -317,7 +317,7 @@ void QgsAdvancedDigitizingDockWidget::setCadEnabled( bool enabled )
}


void QgsAdvancedDigitizingDockWidget::switchZM( void )
void QgsAdvancedDigitizingDockWidget::switchZM( )
{
QgsVectorLayer *vlayer = qobject_cast<QgsVectorLayer *>( mMapCanvas->currentLayer() );
if ( vlayer )
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.h
Expand Up @@ -254,7 +254,7 @@ class GUI_EXPORT QgsAdvancedDigitizingDockWidget : public QgsDockWidget, private
* Determines if Z or M will be enabled.
* \since QgIS 3.20
*/
void switchZM( void );
void switchZM( );

//! construction mode is used to draw intermediate points. These points won't be given any further (i.e. to the map tools)
bool constructionMode() const { return mConstructionMode; }
Expand Down

0 comments on commit 16d8630

Please sign in to comment.