Skip to content

Commit f8afc50

Browse files
committedAug 3, 2018
Spelling
1 parent c5668f3 commit f8afc50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/app/qgsapplayertreeviewmenuprovider.cpp‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,9 +263,9 @@ QMenu *QgsAppLayerTreeViewMenuProvider::createContextMenu()
263263
{
264264
if ( vlayer->dataProvider()->name() == QLatin1String( "memory" ) )
265265
{
266-
QAction *actionMakePermenant = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "mActionFileSave.svg" ) ), tr( "Make Permanent…" ), menu );
267-
connect( actionMakePermenant, &QAction::triggered, QgisApp::instance(), [ = ] { QgisApp::instance()->makeMemoryLayerPermanent( vlayer ); } );
268-
menu->addAction( actionMakePermenant );
266+
QAction *actionMakePermanent = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "mActionFileSave.svg" ) ), tr( "Make Permanent…" ), menu );
267+
connect( actionMakePermanent, &QAction::triggered, QgisApp::instance(), [ = ] { QgisApp::instance()->makeMemoryLayerPermanent( vlayer ); } );
268+
menu->addAction( actionMakePermanent );
269269
}
270270
// save as vector file
271271
QMenu *menuExportVector = new QMenu( tr( "Export" ), menu );

0 commit comments

Comments
 (0)
Please sign in to comment.