Skip to content

Commit 8c3155f

Browse files
committed
Fix indentation in src/app/qgisapp.cpp
The indentation error was added in d732d84 but went unnoticed in the Travis builds after merge in master. However my working branch rebased on top of master detected the issue whereas I never modified this file... https://travis-ci.org/rouault/Quantum-GIS/jobs/119308048 There must be some shortcoming or subtelty in the working of scripts/verify-indentation.sh
1 parent f7c28f6 commit 8c3155f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

+1-1
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)