Skip to content
Permalink
Browse files
Avoid spell checker errors
  • Loading branch information
nyalldawson committed Feb 3, 2018
1 parent 4b365a8 commit 4646932
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
@@ -408,7 +408,7 @@ void QgsVertexTool::cadCanvasPressEvent( QgsMapMouseEvent *e )
{
QMenu menu;
QAction *actionVertexEditor = menu.addAction( tr( "Vertex editor" ) );
connect( actionVertexEditor, &QAction::triggered, this, &QgsVertexTool::showVertexEditor );
connect( actionVertexEditor, &QAction::triggered, this, &QgsVertexTool::showVertexEditor ); //#spellok
menu.exec( mCanvas->mapToGlobal( e->pos() ) );
}
}
@@ -974,7 +974,7 @@ void QgsVertexTool::onCachedGeometryDeleted( QgsFeatureId fid )
}


void QgsVertexTool::showVertexEditor()
void QgsVertexTool::showVertexEditor() //#spellok
{
QgsPointLocator::Match m = mLastMouseMoveMatch;
if ( !m.isValid() || !m.layer() )
@@ -87,7 +87,7 @@ class APP_EXPORT QgsVertexTool : public QgsMapToolAdvancedDigitizing

void onCachedGeometryDeleted( QgsFeatureId fid );

void showVertexEditor();
void showVertexEditor(); //#spellok

void deleteVertexEditorSelection();

0 comments on commit 4646932

Please sign in to comment.