diff --git a/src/gui/raster/qgssinglebandpseudocolorrendererwidget.cpp b/src/gui/raster/qgssinglebandpseudocolorrendererwidget.cpp index 56f97dfe6da..128558af06b 100644 --- a/src/gui/raster/qgssinglebandpseudocolorrendererwidget.cpp +++ b/src/gui/raster/qgssinglebandpseudocolorrendererwidget.cpp @@ -201,7 +201,7 @@ void QgsSingleBandPseudoColorRendererWidget::autoLabel() if ( discrete ) { - if ( i == 0) + if ( i == 0 ) { label = "< " + myCurrentItem->text( 0 ) + unit; } @@ -241,7 +241,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels() if ( discrete ) { - if ( i == 0) + if ( i == 0 ) { label = "< " + myCurrentItem->text( 0 ); } @@ -265,7 +265,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels() suffixes.removeDuplicates(); int max = 0; QString unit; - for( int i = 0; i < suffixes.count(); ++i ) + for ( int i = 0; i < suffixes.count(); ++i ) { int n = allSuffixes.count( suffixes[i] ); if ( n > max ) @@ -277,7 +277,7 @@ void QgsSingleBandPseudoColorRendererWidget::setUnitFromLabels() // Set this suffix as unit if at least used twice if ( max >= 2 ) { - mUnitLineEdit->setText(unit); + mUnitLineEdit->setText( unit ); } autoLabel(); }