Skip to content

Commit 4646932

Browse files
committed
Avoid spell checker errors
1 parent 4b365a8 commit 4646932

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/vertextool/qgsvertextool.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ void QgsVertexTool::cadCanvasPressEvent( QgsMapMouseEvent *e )
408408
{
409409
QMenu menu;
410410
QAction *actionVertexEditor = menu.addAction( tr( "Vertex editor" ) );
411-
connect( actionVertexEditor, &QAction::triggered, this, &QgsVertexTool::showVertexEditor );
411+
connect( actionVertexEditor, &QAction::triggered, this, &QgsVertexTool::showVertexEditor ); //#spellok
412412
menu.exec( mCanvas->mapToGlobal( e->pos() ) );
413413
}
414414
}
@@ -974,7 +974,7 @@ void QgsVertexTool::onCachedGeometryDeleted( QgsFeatureId fid )
974974
}
975975

976976

977-
void QgsVertexTool::showVertexEditor()
977+
void QgsVertexTool::showVertexEditor() //#spellok
978978
{
979979
QgsPointLocator::Match m = mLastMouseMoveMatch;
980980
if ( !m.isValid() || !m.layer() )

src/app/vertextool/qgsvertextool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class APP_EXPORT QgsVertexTool : public QgsMapToolAdvancedDigitizing
8787

8888
void onCachedGeometryDeleted( QgsFeatureId fid );
8989

90-
void showVertexEditor();
90+
void showVertexEditor(); //#spellok
9191

9292
void deleteVertexEditorSelection();
9393

0 commit comments

Comments
 (0)