Skip to content

Commit 3875adf

Browse files
committedSep 14, 2018
Capitalization
1 parent dfe633b commit 3875adf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/app/qgsmaptoolidentifyaction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ QgsMapToolIdentifyAction::QgsMapToolIdentifyAction( QgsMapCanvas *canvas )
5454
setCursor( QgsApplication::getThemeCursor( QgsApplication::Cursor::Identify ) );
5555
connect( this, &QgsMapToolIdentify::changedRasterResults, this, &QgsMapToolIdentifyAction::handleChangedRasterResults );
5656
mIdentifyMenu->setAllowMultipleReturn( true );
57-
QgsMapLayerAction *attrTableAction = new QgsMapLayerAction( tr( "Show attribute table" ), mIdentifyMenu, QgsMapLayer::VectorLayer, QgsMapLayerAction::MultipleFeatures );
57+
QgsMapLayerAction *attrTableAction = new QgsMapLayerAction( tr( "Show Attribute Table" ), mIdentifyMenu, QgsMapLayer::VectorLayer, QgsMapLayerAction::MultipleFeatures );
5858
connect( attrTableAction, &QgsMapLayerAction::triggeredForFeatures, this, &QgsMapToolIdentifyAction::showAttributeTable );
5959
identifyMenu()->addCustomAction( attrTableAction );
6060
mSelectionHandler = new QgsMapToolSelectionHandler( canvas, QgsMapToolSelectionHandler::SelectSimple );

‎src/gui/qgsidentifymenu.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ QList<QgsMapToolIdentify::IdentifyResult> QgsIdentifyMenu::exec( const QList<Qgs
124124
if ( !singleLayer && mAllowMultipleReturn && idResults.count() > 1 )
125125
{
126126
addSeparator();
127-
QAction *allAction = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "/mActionIdentify.svg" ) ), tr( "%1 all (%2)" ).arg( mDefaultActionName ).arg( idResults.count() ), this );
127+
QAction *allAction = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "/mActionIdentify.svg" ) ), tr( "%1 All (%2)" ).arg( mDefaultActionName ).arg( idResults.count() ), this );
128128
allAction->setData( QVariant::fromValue<ActionData>( ActionData( nullptr ) ) );
129129
connect( allAction, &QAction::hovered, this, &QgsIdentifyMenu::handleMenuHover );
130130
addAction( allAction );
@@ -419,7 +419,7 @@ void QgsIdentifyMenu::addVectorLayer( QgsVectorLayer *layer, const QList<QgsMapT
419419
if ( mAllowMultipleReturn && results.count() > 1 )
420420
{
421421
layerMenu->addSeparator();
422-
QAction *allAction = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "/mActionIdentify.svg" ) ), tr( "%1 all (%2)" ).arg( mDefaultActionName ).arg( results.count() ), layerMenu );
422+
QAction *allAction = new QAction( QgsApplication::getThemeIcon( QStringLiteral( "/mActionIdentify.svg" ) ), tr( "%1 All (%2)" ).arg( mDefaultActionName ).arg( results.count() ), layerMenu );
423423
allAction->setData( QVariant::fromValue<ActionData>( ActionData( layer ) ) );
424424
connect( allAction, &QAction::hovered, this, &QgsIdentifyMenu::handleMenuHover );
425425
layerMenu->addAction( allAction );

0 commit comments

Comments
 (0)
Please sign in to comment.