@@ -2301,10 +2301,10 @@ void QgisApp::createToolBars()
2301
2301
2302
2302
QToolButton *bt = new QToolButton ( mAttributesToolBar );
2303
2303
bt->setPopupMode ( QToolButton::MenuButtonPopup );
2304
- QList<QAction *> selectActions ;
2305
- selectActions << mActionSelectByForm << mActionSelectByExpression << mActionSelectAll
2306
- << mActionInvertSelection ;
2307
- bt->addActions ( selectActions );
2304
+ QList<QAction *> selectionActions ;
2305
+ selectionActions << mActionSelectByForm << mActionSelectByExpression << mActionSelectAll
2306
+ << mActionInvertSelection ;
2307
+ bt->addActions ( selectionActions );
2308
2308
2309
2309
QAction *defSelectionAction = mActionSelectByForm ;
2310
2310
switch ( settings.value ( QStringLiteral ( " UI/selectionTool" ), 0 ).toInt () )
@@ -2331,10 +2331,10 @@ void QgisApp::createToolBars()
2331
2331
2332
2332
bt = new QToolButton ( mAttributesToolBar );
2333
2333
bt->setPopupMode ( QToolButton::MenuButtonPopup );
2334
- QList<QAction *> selectionActions ;
2335
- selectionActions << mActionSelectFeatures << mActionSelectPolygon
2336
- << mActionSelectFreehand << mActionSelectRadius ;
2337
- bt->addActions ( selectionActions );
2334
+ QList<QAction *> selectActions ;
2335
+ selectActions << mActionSelectFeatures << mActionSelectPolygon
2336
+ << mActionSelectFreehand << mActionSelectRadius ;
2337
+ bt->addActions ( selectActions );
2338
2338
2339
2339
QAction *defSelectAction = mActionSelectFeatures ;
2340
2340
switch ( settings.value ( QStringLiteral ( " UI/selectTool" ), 0 ).toInt () )
0 commit comments