Skip to content

Commit 692a17e

Browse files
committedMar 29, 2016
Merge pull request #2952 from rouault/fix_indentation
Fix indentation in src/app/qgisapp.cpp
2 parents 4ece916 + 8c3155f commit 692a17e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7746,7 +7746,7 @@ void QgisApp::removeLayer()
77467746
}
77477747

77487748
bool promptConfirmation = QSettings().value( "qgis/askToDeleteLayers", true ).toBool();
7749-
bool shiftHeld = QApplication::queryKeyboardModifiers().testFlag(Qt::ShiftModifier);
7749+
bool shiftHeld = QApplication::queryKeyboardModifiers().testFlag( Qt::ShiftModifier );
77507750
//display a warning
77517751
if ( !shiftHeld && promptConfirmation && QMessageBox::warning( this, tr( "Remove layers and groups" ), tr( "Remove %n legend entries?", "number of legend items to remove", selectedNodes.count() ), QMessageBox::Ok | QMessageBox::Cancel ) == QMessageBox::Cancel )
77527752
{

0 commit comments

Comments
 (0)
Please sign in to comment.